Statistics
MovingMedian
compute moving medians for a data set
Calling Sequence
Parameters
Description
Options
Examples
MovingMedian(X, m, options)
X
-
data set
m
posint; moving window size
options
(optional) equation(s) of the form option=value where option is one of weights or ignore; specify options for the Statistics[MovingMedian] function
The MovingMedian function computes moving medians for a set of observations. This is useful for smoothing the data, thus eliminating cyclic and irregular patterns and therefore enhancing the long term trends.
The first parameter X is a single data sample - given as e.g. a Vector. Each value represents an individual observation.
The second parameter m is the size of the moving window. The size of the moving window cannot exceed the number of elements in X (or the number of non-missing elements if ignore is set to true). The number of items in the answer is less than the number of items in data. Only complete neighborhoods are included, so the number of items is reduced by m-1.
The options argument can contain one or more of the options shown below. These options are described in more detail in the Statistics[Median] help page.
weights=rtable -- Vector of weights (one-dimensional rtable). The weights will be used to compute the local medians (see Statistics[Median]. The number of elements in the weights array should be equal to the size of the moving window.
ignore=truefalse -- This option is used to specify how to handle non-numeric data. If ignore is set to true all non-numeric items in X will be ignored.
with⁡Statistics:
A≔Array⁡1,2,10,2,1,2,10,2,1
A≔12102121021
MovingMedian⁡A,2
1.500000000000006.6.1.500000000000001.500000000000006.6.1.50000000000000
MovingMedian⁡A,3
2.2.2.2.2.2.2.
W≔Array⁡0,1,1
W≔011
MovingMedian⁡A,3,weights=W
6.6.1.500000000000001.500000000000006.6.1.50000000000000
See Also
Statistics[DataSmoothing]
Statistics[Median]
Download Help Document