How to Install and Uninstall perl-Statistics-Basic.noarch Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: May 20,2024

1. Install "perl-Statistics-Basic.noarch" package

This tutorial shows how to install perl-Statistics-Basic.noarch on Red Hat Enterprise Linux 8 (RHEL 8)

$ sudo dnf update $ sudo dnf install perl-Statistics-Basic.noarch

2. Uninstall "perl-Statistics-Basic.noarch" package

This tutorial shows how to uninstall perl-Statistics-Basic.noarch on Red Hat Enterprise Linux 8 (RHEL 8):

$ sudo dnf remove perl-Statistics-Basic.noarch $ sudo dnf autoremove

3. Information about the perl-Statistics-Basic.noarch package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 1:03:15 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : perl-Statistics-Basic
Version : 1.6611
Release : 16.el8
Architecture : noarch
Size : 74 k
Source : perl-Statistics-Basic-1.6611-16.el8.src.rpm
Repository : epel
Summary : A collection of very basic statistics modules
URL : https://metacpan.org/release/Statistics-Basic
License : LGPLv2 and LGPLv2+
Description : use Statistics::Basic qw(:all);
:
: my $median = median( 1,2,3 );
: my $mean = mean( [1,2,3]); # array refs are ok too
:
: my $variance = variance( 1,2,3 );
: my $stddev = stddev( 1,2,3 );
:
: my $correlation = correlation( [1 .. 3], [1 .. 3] );