How To Install r-cran-ctmcd on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-ctmcd
on Kali Linux.
What is r-cran-ctmcd
r-cran-ctmcd is:
This GNU R package provides estimating the parameters of a continuous- time Markov chain from Discrete-Time Data Functions for estimating Markov generator matrices from discrete-time observations. The implemented approaches comprise diagonal adjustment, weighted adjustment and quasi-optimization of matrix logarithm based candidate solutions, an expectation-maximization algorithm as well as a Gibbs sampler.
There are three methods to install r-cran-ctmcd
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-ctmcd 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-ctmcd
using apt-get
by running the following command:
sudo apt-get -y install r-cran-ctmcd
Install r-cran-ctmcd Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-cran-ctmcd
using apt
by running the following command:
sudo apt -y install r-cran-ctmcd
Install r-cran-ctmcd 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-ctmcd
using aptitude
by running the following command:
sudo aptitude -y install r-cran-ctmcd
How To Uninstall r-cran-ctmcd on Kali Linux
To uninstall only the r-cran-ctmcd
package we can use the following command:
sudo apt-get remove r-cran-ctmcd
Uninstall r-cran-ctmcd And Its Dependencies
To uninstall r-cran-ctmcd
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-ctmcd
Remove r-cran-ctmcd Configurations and Data
To remove r-cran-ctmcd
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-ctmcd
Remove r-cran-ctmcd configuration, data, and all of its dependencies
We can use the following command to remove r-cran-ctmcd
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-ctmcd
Dependencies
r-cran-ctmcd have the following dependencies:
- r-base-core
- r-api-4.0
- r-cran-rcpp
- r-cran-coda
- r-cran-expm
- r-cran-numderiv
- r-cran-rcpparmadillo
- libblas3
- libc6
- libgcc-s1
- libstdc++6
References
Summary
In this tutorial we learn how to install r-cran-ctmcd
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.