Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Mode (statistics)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{short description|Value that appears most often in a set of data}} {{For|the music theory concept of "modes"|Mode (music)|}} {{pp-pc}} In [[statistics]], the '''mode''' is the value that appears most often in a set of data values.<ref>[[Damodar N. Gujarati]]. ''Essentials of Econometrics''. McGraw-Hill Irwin. 3rd edition, 2006: p. 110.</ref> If {{mvar|'''X'''}} is a discrete random variable, the mode is the value {{mvar|x}} at which the [[probability mass function]] takes its maximum value (i.e., {{math|1=''x'' = argmax<sub>''x''<sub>''i''</sub></sub> P('''''X''''' = ''x''<sub>''i''</sub>)}}). In other words, it is the value that is most likely to be sampled. Like the statistical [[mean]] and [[median]], the mode is a way of expressing, in a (usually) single number, important information about a [[random variable]] or a [[population (statistics)|population]]. The numerical value of the mode is the same as that of the mean and median in a [[normal distribution]], and it may be very different in highly [[skewed distribution]]s. The mode is not necessarily unique in a given [[discrete distribution]] since the probability mass function may take the same maximum value at several points {{math|''x''<sub>1</sub>}}, {{math|''x''<sub>2</sub>}}, etc. The most extreme case occurs in [[Uniform distribution (discrete)|uniform distributions]], where all values occur equally frequently. A mode of a [[continuous probability distribution]] is often considered to be any value {{mvar|x}} at which its [[probability density function]] has a locally maximum value.<ref name=Zhang2003>{{cite journal | last1 = Zhang | first1 = C | last2 = Mapes | first2 = BE | last3 = Soden | first3 = BJ | year = 2003 | title = Bimodality in tropical water vapour | journal = Q. J. R. Meteorol. Soc. | volume = 129 | issue = 594 | pages = 2847β2866 | doi = 10.1256/qj.02.166 | bibcode = 2003QJRMS.129.2847Z | s2cid = 17153773 }}</ref> When the probability density function of a [[continuous distribution]] has multiple [[local maximum|local maxima]] it is common to refer to all of the local maxima as modes of the distribution, so any peak is a mode. Such a continuous distribution is called [[multimodal distribution|multimodal]] (as opposed to [[unimodal distribution|unimodal]]). In [[Symmetric distribution|symmetric]] [[unimodality|unimodal]] distributions, such as the [[normal distribution]], the mean (if defined), median and mode all coincide. For samples, if it is known that they are drawn from a symmetric unimodal distribution, the sample mean can be used as an estimate of the population mode. ==Mode of a sample== The mode of a sample is the element that occurs most often in the collection. For example, the mode of the sample [1, 3, 6, 6, 6, 6, 7, 7, 12, 12, 17] is 6. Given the list of data [1, 1, 2, 4, 4] its mode is not unique. A dataset, in such a case, is said to be [[bimodal]], while a set with more than two modes may be described as [[Multimodal distribution|multimodal]]. For a sample from a continuous distribution, such as [0.935..., 1.211..., 2.430..., 3.668..., 3.874...], the concept is unusable in its raw form, since no two values will be exactly the same, so each value will occur precisely once. In order to estimate the mode of the underlying distribution, the usual practice is to discretize the data by assigning frequency values to [[interval (mathematics)|interval]]s of equal distance, as for making a [[histogram]], effectively replacing the values by the midpoints of the intervals they are assigned to. The mode is then the value where the histogram reaches its peak. For small or middle-sized samples the outcome of this procedure is sensitive to the choice of interval width if chosen too narrow or too wide; typically one should have a sizable fraction of the data concentrated in a relatively small number of intervals (5 to 10), while the fraction of the data falling outside these intervals is also sizable. An alternate approach is [[kernel density estimation]], which essentially blurs point samples to produce a continuous estimate of the probability density function which can provide an estimate of the mode. The following [[MATLAB]] (or [[GNU Octave|Octave]]) code example computes the mode of a sample: <syntaxhighlight lang="matlab"> X = sort(x); % x is a column vector dataset indices = find(diff([X, realmax]) > 0); % indices where repeated values change [modeL,i] = max (diff([0, indices])); % longest persistence length of repeated values mode = X(indices(i)); </syntaxhighlight> The algorithm requires as a first step to sort the sample in ascending order. It then computes the discrete derivative of the sorted list and finds the indices where this derivative is positive. Next it computes the discrete derivative of this set of indices, locating the maximum of this derivative of indices, and finally evaluates the sorted sample at the point where that maximum occurs, which corresponds to the last member of the stretch of repeated values. ==Comparison of mean, median and mode== {{See also|Mean|Median}} [[File:visualisation mode median mean.svg|thumb|upright|Geometric visualisation of the mode, median and mean of an arbitrary probability density function.<ref>{{cite web|title=AP Statistics Review - Density Curves and the Normal Distributions|url=http://apstatsreview.tumblr.com/post/50058615236/density-curves-and-the-normal-distributions?action=purge|access-date=16 March 2015|archive-url=https://web.archive.org/web/20150402183703/http://apstatsreview.tumblr.com/post/50058615236/density-curves-and-the-normal-distributions?action=purge|archive-date=2 April 2015|url-status=dead}}</ref>]] {| class="wikitable" |+ Comparison of common [[average]]s of values { 1, 2, 2, 3, 4, 7, 9 } ! Type ! Description ! Example ! Result |- | align="center" | [[Arithmetic mean]] | ''Sum of values of a data set divided by number of values'' | align="center" | (1+2+2+3+4+7+9) / 7 | align="center" | '''4''' |- | align="center" | [[Median]] | ''Middle value separating the greater and lesser halves of a data set'' | align="center" | 1, 2, 2, '''3''', 4, 7, 9 | align="center" | '''3''' |- | align="center" | Mode | ''Most frequent value in a data set'' | align="center" | 1, '''2''', '''2''', 3, 4, 7, 9 | align="center" | '''2''' |} ===Use=== Unlike mean and median, the concept of mode also makes sense for "[[nominal data]]" (i.e., not consisting of [[Number|numerical]] values in the case of mean, or even of ordered values in the case of median). For example, taking a sample of [[Korean name|Korean family name]]s, one might find that "[[Kim (Korean name)|Kim]]" occurs more often than any other name. Then "Kim" would be the mode of the sample. In any voting system where a plurality determines victory, a single modal value determines the victor, while a multi-modal outcome would require some tie-breaking procedure to take place. Unlike median, the concept of mode makes sense for any random variable assuming values from a [[vector space]], including the [[real number]]s (a one-[[dimension]]al vector space) and the [[integer]]s (which can be considered embedded in the reals). For example, a distribution of points in the [[plane (mathematics)|plane]] will typically have a mean and a mode, but the concept of median does not apply. The median makes sense when there is a [[linear order]] on the possible values. Generalizations of the concept of median to higher-dimensional spaces are the [[geometric median]] and the [[centerpoint (geometry)|centerpoint]]. ===Uniqueness and definedness=== For some [[probability distribution]]s, the expected value may be infinite or undefined, but if defined, it is unique. The mean of a (finite) sample is always defined. The median is the value such that the fractions not exceeding it and not falling below it are each at least 1/2. It is not necessarily unique, but never infinite or totally undefined. For a data sample it is the "halfway" value when the list of values is ordered in increasing value, where usually for a list of even length the numerical average is taken of the two values closest to "halfway". Finally, as said before, the mode is not necessarily unique. Certain [[pathological (mathematics)|pathological]] distributions (for example, the [[Cantor distribution]]) have no defined mode at all.{{Citation needed|date=November 2010}}<ref>{{Cite web |last=Morrison |first=Kent |date=1998-07-23 |title=Random Walks with Decreasing Steps |url=http://www.calpoly.edu/~kmorriso/Research/RandomWalks.pdf |url-status=dead |archive-url=https://web.archive.org/web/20151202055102/http://www.calpoly.edu/~kmorriso/Research/RandomWalks.pdf |archive-date=2015-12-02 |access-date=2007-02-16 |website=Department of Mathematics, California Polytechnic State University}}</ref> For a finite data sample, the mode is one (or more) of the values in the sample. ===Properties=== Assuming definedness, and for simplicity uniqueness, the following are some of the most interesting properties. * All three measures have the following property: If the random variable (or each value from the sample) is subjected to the linear or [[affine transformation]], which replaces {{mvar|X}} by {{math|''aX'' + ''b''}}, so are the mean, median and mode. * Except for extremely small samples, the mode is insensitive to "[[outliers]]" (such as occasional, rare, false experimental readings). The median is also very robust in the presence of outliers, while the mean is rather sensitive. * In continuous [[unimodal distribution]]s the median often lies between the mean and the mode, about one third of the way going from mean to mode. In a formula, median β (2 Γ mean + mode)/3. This rule, due to [[Karl Pearson]], often applies to slightly non-symmetric distributions that resemble a normal distribution, but it is not always true and in general the three statistics can appear in any order.<ref>{{cite web |url=http://www.se16.info/hgb/median.htm |title=Relationship between the mean, median, mode, and standard deviation in a unimodal distribution }}</ref><ref>{{cite journal |last=Hippel |first=Paul T. von |year=2005 |url=http://www.amstat.org/publications/jse/v13n2/vonhippel.html |title=Mean, Median, and Skew: Correcting a Textbook Rule |journal=Journal of Statistics Education |volume=13 |issue=2 |doi= 10.1080/10691898.2005.11910556|doi-access=free }}</ref> * For unimodal distributions, the mode is within {{radic|3}} standard deviations of the mean, and the root mean square deviation about the mode is between the standard deviation and twice the standard deviation.<ref>{{cite journal |last=Bottomley |first=H. |year=2004 |url=http://www.se16.info/hgb/mode.pdf |title=Maximum distance between the mode and the mean of a unimodal distribution |journal=Unpublished Preprint }}</ref> ===Example for a skewed distribution=== An example of a [[Skewness|skewed]] distribution is [[Distribution of wealth|personal wealth]]: Few people are very rich, but among those some are extremely rich. However, many are rather poor. [[Image:Comparison mean median mode.svg|thumb|300px|Comparison of [[mean]], [[median]] and mode of two [[log-normal distribution]]s with different [[skewness]].]] A well-known class of distributions that can be arbitrarily skewed is given by the [[log-normal distribution]]. It is obtained by transforming a random variable {{mvar|X}} having a normal distribution into random variable {{math|''Y'' {{=}} ''e''<sup>''X''</sup>}}. Then the logarithm of random variable {{mvar|Y}} is normally distributed, hence the name. Taking the mean ΞΌ of {{mvar|X}} to be 0, the median of {{mvar|Y}} will be 1, independent of the [[standard deviation]] Ο of {{mvar|X}}. This is so because {{mvar|X}} has a symmetric distribution, so its median is also 0. The transformation from {{mvar|X}} to {{mvar|Y}} is monotonic, and so we find the median {{math|''e''<sup>0</sup> {{=}} 1}} for {{mvar|Y}}. When {{mvar|X}} has standard deviation Ο = 0.25, the distribution of {{mvar|Y}} is weakly skewed. Using formulas for the [[log-normal distribution]], we find: :<math>\begin{array}{rlll} \text{mean} & = e^{\mu + \sigma^2 / 2} & = e^{0 + 0.25^2 / 2} & \approx 1.032 \\ \text{mode} & = e^{\mu - \sigma^2} & = e^{0 - 0.25^2} & \approx 0.939 \\ \text{median} & = e^\mu & = e^0 & = 1 \end{array}</math> Indeed, the median is about one third on the way from mean to mode. When {{mvar|X}} has a larger standard deviation, {{math|Ο {{=}} 1}}, the distribution of {{mvar|Y}} is strongly skewed. Now :<math>\begin{array}{rlll} \text{mean} & = e^{\mu + \sigma^2 / 2} & = e^{0 + 1^2 / 2} & \approx 1.649 \\ \text{mode} & = e^{\mu - \sigma^2} & = e^{0 - 1^2} & \approx 0.368 \\ \text{median} & = e^\mu & = e^0 & = 1 \end{array}</math> Here, [[Skewness#Pearson's skewness coefficients|Pearson's rule of thumb]] fails. ===Van Zwet condition=== Van Zwet derived an inequality which provides sufficient conditions for this inequality to hold.<ref name=vanZwet1979>{{cite journal | last1 = van Zwet | first1 = WR | year = 1979 | title = Mean, median, mode II | journal = Statistica Neerlandica | volume = 33 | issue = 1| pages = 1β5 | doi=10.1111/j.1467-9574.1979.tb00657.x}}</ref> The inequality :Mode β€ Median β€ Mean holds if :F( Median - {{mvar|x}} ) + F( Median + {{mvar|x}} ) β₯ 1 for all {{mvar|x}} where F() is the [[cumulative distribution function]] of the distribution. ==Unimodal distributions== It can be shown for a unimodal distribution that the median <math>\tilde{X}</math> and the mean <math>\bar{X}</math> lie within (3/5)<sup>1/2</sup> β 0.7746 standard deviations of each other.<ref name="unimodal">{{cite journal |doi=10.1137/S0040585X97975447 |last1=Basu |first1=Sanjib |first2=Anirban |last2=Dasgupta |title=The mean, median, and mode of unimodal distributions: a characterization |journal=Theory of Probability & Its Applications |volume=41 |issue=2 |year=1997 |pages=210β223 }}</ref> In symbols, : <math>\frac{\left|\tilde{X} - \bar{X}\right|}{\sigma} \le (3/5)^{1/2}</math> where <math>|\cdot|</math> is the absolute value. A similar relation holds between the median and the mode: they lie within 3<sup>1/2</sup> β 1.732 standard deviations of each other: : <math>\frac{\left|\tilde{X} - \mathrm{mode}\right|}{\sigma} \le 3^{1/2}.</math> ==History== The term mode originates with [[Karl Pearson]] in 1895.<ref>{{cite journal | last1 = Pearson | first1 = Karl | year = 1895 | title = Contributions to the Mathematical Theory of Evolution. II. Skew Variation in Homogeneous Material | url =https://zenodo.org/record/1432104 | journal = Philosophical Transactions of the Royal Society of London A | volume = 186 | pages = 343β414 | doi=10.1098/rsta.1895.0010| bibcode = 1895RSPTA.186..343P | doi-access = free }}</ref> Pearson uses the term ''mode'' interchangeably with ''maximum-ordinate''. In a footnote he says, "I have found it convenient to use the term ''mode'' for the abscissa corresponding to the ordinate of maximum frequency." ==See also== {{Portal|Mathematics}} *[[Arg max]] *[[Central tendency]] *[[Descriptive statistics]] *[[Moment (mathematics)]] *[[Summary statistics]] *[[Unimodal function]] ==References== {{Reflist|2}} ==External links== *{{springer|title=Mode|id=p/m064340}} *[https://web.archive.org/web/20071030070638/http://www.stats4students.com/Essentials/Measures-Central-Tendency/Overview_2.php A Guide to Understanding & Calculating the Mode] * {{MathWorld | urlname=Mode | title=Mode}} * Mean, Median and Mode short beginner video from [http://www.khanacademy.org/math/statistics/v/mean-median-and-mode Khan Academy] {{Statistics|descriptive}} {{DEFAULTSORT:Mode (Statistics)}} [[Category:Means]] [[Category:Summary statistics]] [[Category:Articles with example MATLAB/Octave code]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Citation needed
(
edit
)
Template:Cite journal
(
edit
)
Template:Cite web
(
edit
)
Template:For
(
edit
)
Template:Math
(
edit
)
Template:MathWorld
(
edit
)
Template:Mvar
(
edit
)
Template:Portal
(
edit
)
Template:Pp-pc
(
edit
)
Template:Radic
(
edit
)
Template:Reflist
(
edit
)
Template:See also
(
edit
)
Template:Short description
(
edit
)
Template:Springer
(
edit
)
Template:Statistics
(
edit
)