How To Install r-cran-hsaur3 on Kali Linux

In this tutorial we learn how to install r-cran-hsaur3 on Kali Linux. r-cran-hsaur3 is Handbook of Statistical Analyses Using R (3rd Edition)

Introduction

In this tutorial we learn how to install r-cran-hsaur3 on Kali Linux.

What is r-cran-hsaur3

r-cran-hsaur3 is:

Functions, data sets, analyses and examples from the third edition of the book ‘‘A Handbook of Statistical Analyses Using R’’ (Torsten Hothorn and Brian S. Everitt, Chapman & Hall/CRC, 2014). The first chapter of the book, which is entitled ‘‘An Introduction to R’’, is completely included in this package, for all other chapters, a vignette containing all data analyses is available. In addition, Sweave source code for slides of selected chapters is included in this package (see HSAUR3/inst/slides).

There are three methods to install r-cran-hsaur3 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-hsaur3 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-hsaur3 using apt-get by running the following command:

sudo apt-get -y install r-cran-hsaur3

Install r-cran-hsaur3 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install r-cran-hsaur3 using apt by running the following command:

sudo apt -y install r-cran-hsaur3

Install r-cran-hsaur3 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-hsaur3 using aptitude by running the following command:

sudo aptitude -y install r-cran-hsaur3

How To Uninstall r-cran-hsaur3 on Kali Linux

To uninstall only the r-cran-hsaur3 package we can use the following command:

sudo apt-get remove r-cran-hsaur3

Uninstall r-cran-hsaur3 And Its Dependencies

To uninstall r-cran-hsaur3 and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove r-cran-hsaur3

Remove r-cran-hsaur3 Configurations and Data

To remove r-cran-hsaur3 configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge r-cran-hsaur3

Remove r-cran-hsaur3 configuration, data, and all of its dependencies

We can use the following command to remove r-cran-hsaur3 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge r-cran-hsaur3

Dependencies

r-cran-hsaur3 have the following dependencies:

References

Summary

In this tutorial we learn how to install r-cran-hsaur3 package on Kali Linux using different package management tools: apt, apt-get and aptitude.