dstats v1.0.4 (2018-01-22T19:49:16Z)
Home
Dub
Repo
ZScore
dstats
summary
struct
ZScore (
T
)
if
(
isForwardRange
!(
T
) &&
is
(
ElementType
!(
T
) :
double
)
) {
this
(T range);
this
(T range, double mean, double sd);
double
front
[@property getter];
void
popFront
();
bool
empty
[@property getter];
static if
(
isForwardRange!(T)
)
typeof
(
this
)
save
[@property getter];
static if
(
isRandomAccessRange!(T)
)
double
opIndex
(size_t index);
static if
(
isBidirectionalRange!(T)
)
double
back
[@property getter];
static if
(
isBidirectionalRange!(T)
)
void
popBack
();
static if
(
hasLength!(T)
)
size_t
length
[@property getter];
}
Constructors
this
this
(T range)
Undocumented in source.
this
this
(T range, double mean, double sd)
Undocumented in source.
Members
Functions
opIndex
double
opIndex
(size_t index)
popBack
void
popBack
()
popFront
void
popFront
()
Properties
back
double
back
[@property getter]
empty
bool
empty
[@property getter]
front
double
front
[@property getter]
length
size_t
length
[@property getter]
save
typeof
(
this
)
save
[@property getter]
Meta
Source
See Implementation
dstats
summary
functions
geometricMean
interquantileRange
kurtosis
mean
meanStdev
median
medianAbsDev
medianPartition
skewness
stdev
sum
summary
variance
zScore
structs
GeometricMean
Mean
MeanSD
MedianAbsDev
Summary
ZScore