How To Install r-cran-mets on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-mets
on Kali Linux.
What is r-cran-mets
r-cran-mets is:
Implementation of various statistical models for multivariate event history data doi:10.1007/s10985-013-9244-x. Including multivariate cumulative incidence models doi:10.1002/sim.6016, and bivariate random effects probit models (Liability models) doi:10.1016/j.csda.2015.01.014. Also contains two-stage binomial modelling that can do pairwise odds-ratio dependence modelling based marginal logistic regression models. This is an alternative to the alternating logistic regression approach (ALR).
There are three methods to install r-cran-mets
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-mets 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-mets
using apt-get
by running the following command:
sudo apt-get -y install r-cran-mets
Install r-cran-mets Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-cran-mets
using apt
by running the following command:
sudo apt -y install r-cran-mets
Install r-cran-mets 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-mets
using aptitude
by running the following command:
sudo aptitude -y install r-cran-mets
How To Uninstall r-cran-mets on Kali Linux
To uninstall only the r-cran-mets
package we can use the following command:
sudo apt-get remove r-cran-mets
Uninstall r-cran-mets And Its Dependencies
To uninstall r-cran-mets
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-mets
Remove r-cran-mets Configurations and Data
To remove r-cran-mets
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-mets
Remove r-cran-mets configuration, data, and all of its dependencies
We can use the following command to remove r-cran-mets
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-mets
Dependencies
r-cran-mets have the following dependencies:
- r-base-core
- r-api-4.0
- r-cran-timereg
- r-cran-lava
- r-cran-mvtnorm
- r-cran-numderiv
- r-cran-rcpp
- r-cran-survival
- r-cran-rcpparmadillo
- libblas3
- libc6
- libgcc-s1
- liblapack3
- libstdc++6
References
Summary
In this tutorial we learn how to install r-cran-mets
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.