How To Install r-cran-ordinal on Kali Linux

In this tutorial we learn how to install r-cran-ordinal on Kali Linux. r-cran-ordinal is GNU R regression models for ordinal data

Introduction

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

What is r-cran-ordinal

r-cran-ordinal is:

Implementation of cumulative link (mixed) models also known as ordered regression models, proportional odds models, proportional hazards models for grouped survival times and ordered logit/probit/… models. Estimation is via maximum likelihood and mixed models are fitted with the Laplace approximation and adaptive Gauss-Hermite quadrature. Multiple random effect terms are allowed and they may be nested, crossed or partially nested/crossed. Restrictions of symmetry and equidistance can be imposed on the thresholds (cut-points/intercepts). Standard model methods are available (summary, anova, drop-methods, step, confint, predict etc.) in addition to profile methods and slice methods for visualizing the likelihood function and checking convergence.

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

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

Install r-cran-ordinal Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install r-cran-ordinal

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

sudo aptitude -y install r-cran-ordinal

How To Uninstall r-cran-ordinal on Kali Linux

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

sudo apt-get remove r-cran-ordinal

Uninstall r-cran-ordinal And Its Dependencies

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

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

Remove r-cran-ordinal Configurations and Data

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

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

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

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

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

Dependencies

r-cran-ordinal have the following dependencies:

References

Summary

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