unc_measures {UncDecomp} | R Documentation |
uncertainty measures
Description
Functions beginning with U are uncertainty measure that return a scalar given a vector, such as mean absolute deviation or variance. Functions beginning with flist are lists of functions that summarize vector like mean or median. Functions beginning with u are the uncertainty of each element of the vector, which is calculated from the elements of the vector and summary statistics of the vector, like difference or square of difference between two values.
Usage
U_range(x)
u_range(x, a, b, n)
flist_range
U_mad(x)
u_mad(x, m)
flist_mad
U_var(x)
u_var(x, m)
flist_var
Arguments
x |
a vector. |
a , b , n |
summary statistics for u_range(), a and b are minimum and maximum of x. n is length of x |
m |
summary statistics. median for u_mad() and mean for u_var() |
Format
An object of class list
of length 3.
[Package UncDecomp version 1.0.1 Index]