|
Quantile
Quantile[data, q] calculates the qth quantile of data.
Quantile[data, q] gives the location before which percent of the data lie. In other words, Quantile gives a value such that the probability that is less than or equal to and the probability that is greater than or equal to . The quantile values at = 0.25, 0.5 and 0.75 are called the quartiles, and you can obtain them using Quartiles.
See also: MovingAverage, StandardDeviation.

Examples
Using InstantCalculators
Here are the InstantCalculators for the Quantile function. Enter the parameters for your calculation and click Calculate to see the result.
In[1]:=
Out[1]=
In[2]:=
Out[2]=
In[3]:=
Out[3]=
Entering Commands Directly
You can paste a template for this command via the Text Input button on the Quantile Function Controller.
This defines a list called data.
In[4]:=
Out[4]=
This gives the mean of data.
In[5]:=
Out[5]=
Clear the variable definition.
In[6]:=
|