How To Install r-cran-cmstatr on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-cmstatr
on Kali Linux.
What is r-cran-cmstatr
r-cran-cmstatr is:
An implementation of the statistical methods commonly used for advanced composite materials in aerospace applications. This package focuses on calculating basis values (lower tolerance bounds) for material strength properties, as well as performing the associated diagnostic tests. This package provides functions for calculating basis values assuming several different distributions, as well as providing functions for non-parametric methods of computing basis values. Functions are also provided for testing the hypothesis that there is no difference between strength and modulus data from an alternate sample and that from a “qualification” or “baseline” sample. For a discussion of these statistical methods and their use, see the Composite Materials Handbook, Volume 1 (2012, ISBN: 978-0-7680-7811-4). Additional details about this package are available in the paper by Kloppenborg (2020, doi:10.21105/joss.02265).
There are three methods to install r-cran-cmstatr
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-cmstatr 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-cmstatr
using apt-get
by running the following command:
sudo apt-get -y install r-cran-cmstatr
Install r-cran-cmstatr Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-cran-cmstatr
using apt
by running the following command:
sudo apt -y install r-cran-cmstatr
Install r-cran-cmstatr 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-cmstatr
using aptitude
by running the following command:
sudo aptitude -y install r-cran-cmstatr
How To Uninstall r-cran-cmstatr on Kali Linux
To uninstall only the r-cran-cmstatr
package we can use the following command:
sudo apt-get remove r-cran-cmstatr
Uninstall r-cran-cmstatr And Its Dependencies
To uninstall r-cran-cmstatr
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-cmstatr
Remove r-cran-cmstatr Configurations and Data
To remove r-cran-cmstatr
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-cmstatr
Remove r-cran-cmstatr configuration, data, and all of its dependencies
We can use the following command to remove r-cran-cmstatr
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-cmstatr
Dependencies
r-cran-cmstatr have the following dependencies:
- r-base-core
- r-api-4.0
- r-cran-dplyr
- r-cran-generics
- r-cran-ggplot2
- r-cran-ksamples
- r-cran-mass
- r-cran-rlang
- r-cran-tibble
References
Summary
In this tutorial we learn how to install r-cran-cmstatr
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.