How To Install r-cran-effectsize on Ubuntu 22.04
Introduction
In this tutorial we learn how to install r-cran-effectsize on Ubuntu 22.04.
What is r-cran-effectsize
r-cran-effectsize is:
Provide utilities to work with indices of effect size and standardized parameters for a wide variety of models (see support list of insight; Lüdecke, Waggoner & Makowski (2019) doi:10.21105/joss.01412), allowing computation and conversion of indices such as Cohen’s d, r, odds, etc.
There are three methods to install r-cran-effectsize on Ubuntu 22.04. 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-effectsize 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-effectsize using apt-get by running the following command:
sudo apt-get -y install r-cran-effectsize
Install r-cran-effectsize Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install r-cran-effectsize using apt by running the following command:
sudo apt -y install r-cran-effectsize
Install r-cran-effectsize Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install r-cran-effectsize using aptitude by running the following command:
sudo aptitude -y install r-cran-effectsize
How To Uninstall r-cran-effectsize on Ubuntu 22.04
To uninstall only the r-cran-effectsize package we can use the following command:
sudo apt-get remove r-cran-effectsize
Uninstall r-cran-effectsize And Its Dependencies
To uninstall r-cran-effectsize and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove r-cran-effectsize
Remove r-cran-effectsize Configurations and Data
To remove r-cran-effectsize configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge r-cran-effectsize
Remove r-cran-effectsize configuration, data, and all of its dependencies
We can use the following command to remove r-cran-effectsize configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-effectsize
References
Summary
In this tutorial we learn how to install r-cran-effectsize package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.