The following 33 words could not be found in the dictionary of 615 words (including 615 LocalSpellingWords) and are highlighted below:

3rd   and   aroudn   between   by   case   distribution   examine   If   Imagine   in   Max   max   Mean   Median   Min   my   numbers   of   Qu   quantile   Quantiles   quantiles   Score   seq   summary   that   the   this   Understanding   vary   we   you  

Clear message

Understanding Quantiles

Imagine you have a distribution of numbers, in this case I have aroudn 6000 numbers that vary between 50 and 3233:

> summary(myScore)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
  50.11  242.40  739.10 1135.00 1826.00 3233.00

If we examine quantiles of the data:

> quantile(1:max(myScore), seq(0,1,by=0.25))
  0%  25%  50%  75% 100% 
   1  809 1617 2425 3233

R/Quantiles (last edited 2013-03-20 16:32:48 by ChrisSeidel)