EasyDeepLearn

What are quantiles and quartiles?

easy

Answer

  • The q-quantile is the value below which fraction q of the data falls.
  • Median = 0.5-quantile.
  • Quartiles: Q1 (0.25), Q2 (0.5, median), Q3 (0.75).
  • Interquartile range IQR = Q3 - Q1.
  • Used for robust spread measurement, boxplots, outlier detection (points > Q3 + 1.5·IQR or < Q1 - 1.5·IQR are 'outliers' by Tukey's rule).
  • Foundation of quantile regression: model any quantile of YXY \mid X, not just the mean.
Check yourself — multiple choice
  • Only mean and variance matter
  • q-quantile: fraction q below; IQR = Q3-Q1; outlier rule: Q1 - 1.5·IQR or Q3 + 1.5·IQR; foundation of quantile regression
  • Same as mean
  • Not robust

Quantiles + IQR: robust spread; Tukey outlier rule; quantile regression.

#descriptive

Practise Statistics Fundamentals

215 interview questions in this topic.

Related questions