How To Install r-cran-qgraph on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-qgraph
on Kali Linux.
What is r-cran-qgraph
r-cran-qgraph is:
This GNU R package provides graph plotting methods, psychometric data visualization and graphical model estimation functions based on weighted network visualization and analysis, as well as Gaussian graphical model computation. See Epskamp et al. (2012) doi:10.18637/jss.v048.i04.
There are three methods to install r-cran-qgraph
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install r-cran-qgraph Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install r-cran-qgraph
using apt-get
by running the following command:
sudo apt-get -y install r-cran-qgraph
Install r-cran-qgraph Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-cran-qgraph
using apt
by running the following command:
sudo apt -y install r-cran-qgraph
Install r-cran-qgraph Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install r-cran-qgraph
using aptitude
by running the following command:
sudo aptitude -y install r-cran-qgraph
How To Uninstall r-cran-qgraph on Kali Linux
To uninstall only the r-cran-qgraph
package we can use the following command:
sudo apt-get remove r-cran-qgraph
Uninstall r-cran-qgraph And Its Dependencies
To uninstall r-cran-qgraph
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-qgraph
Remove r-cran-qgraph Configurations and Data
To remove r-cran-qgraph
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-qgraph
Remove r-cran-qgraph configuration, data, and all of its dependencies
We can use the following command to remove r-cran-qgraph
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-qgraph
Dependencies
r-cran-qgraph have the following dependencies:
- r-base-core
- r-api-4.0
- r-cran-rcpp
- r-cran-psych
- r-cran-lavaan
- r-cran-plyr
- r-cran-hmisc
- r-cran-igraph
- r-cran-jpeg
- r-cran-png
- r-cran-colorspace
- r-cran-matrix
- r-cran-corpcor
- r-cran-reshape2
- r-cran-ggplot2
- r-cran-glasso
- r-cran-fdrtool
- r-cran-gtools
- r-cran-pbapply
- r-cran-abind
- r-cran-dplyr
- libc6
- libgcc-s1
- libstdc++6
References
Summary
In this tutorial we learn how to install r-cran-qgraph
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.