WOLFRAM

The Wolfram Language has many powerful features to handle a wide range of statistical needs. Some of the most elementary are outlined below.

Here is some data (20 random real numbers between 0 and 50):

Out[1]=1

Use Mean to find the mean of data:

Out[2]=2

Use Median to find the median:

Out[3]=3

Use Max to find the maximum element:

Out[4]=4

You can also find the Variance and the StandardDeviation:

Out[5]=5
Out[6]=6

If you want to figure out quantiles, you can use Quantile. The first argument is a set of data; the second is a number q between 0 and 1:

Out[7]=7

If you want to find out quartiles or percentiles, you can use Quantile with an argument of n/4 or n/100, respectively:

Out[8]=8

If you would like a list of the quartiles, use the Quartiles function:

Out[9]=9