|
|
Line 1: |
Line 1: |
| {{DISPLAYTITLE:{{SUBPAGENAME}}}} | | {{DISPLAYTITLE:{{SUBPAGENAME}}}} |
| Compute median or quantils of a vector ''x''. | | Compute median or quantiles of a vector ''x''. |
|
| |
|
| A quantil '''q<sub>p</sub>''' can be defined as the propability '''p''' of: <code>an element of x is lower than '''q<sub>p</sub>'''</code>.
| | The quantile '''q<sub>p</sub>''' can be defined as the propability '''p''' of: <code>an element of x is lower than '''q<sub>p</sub>'''</code>. The value p must be in the range 0 to 1. The special quantile q<sub>0.5</sub> is also called '''median'''. |
| | |
| Ein p-Quantil ist ein Lagemaß in der Statistik, wobei p eine reelle Zahl zwischen 0 und 1 ist. Das p-Quantil ist ein Merkmalswert, der die Verteilung einer Variablen bzw. Zufallsvariablen in zwei Abschnitte unterteilt. Links vom p-Quantil liegen 100\cdot p Prozent aller Beobachtungswerte bzw. 100\cdot p Prozent der Gesamtzahl der Zufallswerte. Rechts davon liegen 100\cdot(1-p) Prozent aller Beobachtungswerte bzw. 100\cdot(1-p) Prozent der Gesamtzahl der Zufallswerte. p heißt auch der Unterschreitungsanteil.
| |
| | |
| Spezielle Quantile sind der Median, die Quartile, die Quintile, die Dezile und die Perzentile.
| |
| | |
| =====median=====
| |
| | |
| Calculate the median of the vector <var>x</var>.
| |
| | |
| =====Usage:=====
| |
| | |
| <code>median(<var>x</var>)</code>
| |
| | |
| <code>median(<var>x</var>,<var>q</var>)</code>
| |
| | |
| =====Parameters:=====
| |
| | |
| ;<var>x</var>
| |
| | |
| :The data vector.
| |
| | |
| ;<var>q</var>
| |
| | |
| :The cut point (<code>0</code> < <var>q</var> < <code>1</code>) or a vector of cut points. If no cut point is specified, <code>0.5</code> is used. If <var>q</var> is a vector, each element <var>q</var><code>[i]</code> must be in the range <code>0</code> to <code>1</code>.
| |
| | |
| =====Return Type:=====
| |
| | |
| scalar
| |
| | |
| =====Result:=====
| |
| | |
| The value <code>xq</code> with <code>sum(h(</code><var>x</var> <code><= xq)) =</code> <var>q</var>
| |
| | |
| If q is a vector the result is a vector <code>xq</code> with <code>nrow(</code><var>q</var><code>)</code> elements with: <code>h(</code><var>x</var> <code>|</code> <var>x</var><code><=xq[i]) =</code> <var>q</var><code>[i]</code>
| |
Revision as of 16:33, 8 April 2011
Compute median or quantiles of a vector x.
The quantile qp can be defined as the propability p of: an element of x is lower than qp
. The value p must be in the range 0 to 1. The special quantile q0.5 is also called median.