How To Install r-cran-rockchalk on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-rockchalk on Kali Linux.
What is r-cran-rockchalk
r-cran-rockchalk is:
A collection of functions for interpretation and presentation of regression analysis. These functions are used to produce the statistics lectures in http://pj.freefaculty.org/guides. Includes regression diagnostics, regression tables, and plots of interactions and “moderator” variables. The emphasis is on “mean-centered” and “residual-centered” predictors. The vignette ‘rockchalk’ offers a fairly comprehensive overview. The vignette ‘Rstyle’ has advice about coding in R. The package title ‘rockchalk’ refers to the school motto, ‘Rock Chalk Jayhawk, Go K.U.’.
There are three methods to install r-cran-rockchalk 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-rockchalk Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install r-cran-rockchalk using apt-get by running the following command:
sudo apt-get -y install r-cran-rockchalkInstall r-cran-rockchalk Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install r-cran-rockchalk using apt by running the following command:
sudo apt -y install r-cran-rockchalkInstall r-cran-rockchalk 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 updateAfter updating apt database, We can install r-cran-rockchalk using aptitude by running the following command:
sudo aptitude -y install r-cran-rockchalkHow To Uninstall r-cran-rockchalk on Kali Linux
To uninstall only the r-cran-rockchalk package we can use the following command:
sudo apt-get remove r-cran-rockchalkUninstall r-cran-rockchalk And Its Dependencies
To uninstall r-cran-rockchalk and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-rockchalkRemove r-cran-rockchalk Configurations and Data
To remove r-cran-rockchalk configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-rockchalkRemove r-cran-rockchalk configuration, data, and all of its dependencies
We can use the following command to remove r-cran-rockchalk configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-rockchalkDependencies
r-cran-rockchalk have the following dependencies:
References
Summary
In this tutorial we learn how to install r-cran-rockchalk package on Kali Linux using different package management tools: apt, apt-get and aptitude.