| PopulationStat | R Documentation |
Computes theoretical descriptive statistics of a distribution.
populationstat(stat = "mean", dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
popmean(dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
popsd(dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
popvar(dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
popcvar(dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
popskew(dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
popkurt(dist, distarg, p0 = 0, distbounds = c(-Inf, Inf))
stat |
character; statistic to compute — one of |
dist |
character; distribution name (e.g. |
distarg |
list of distribution arguments |
p0 |
numeric; probability zero (default 0) |
distbounds |
numeric vector of length 2; distribution bounds (default
|
scalar numeric
moments, checkTS
library(CoSMoS)
populationstat("mean", "norm", list(mean = 2, sd = 1))
populationstat("sd", "norm", list(mean = 2, sd = 1))
populationstat("var", "norm", list(mean = 2, sd = 1))
populationstat("cvar", "norm", list(mean = 2, sd = 1))
populationstat("skew", "norm", list(mean = 2, sd = 1))
populationstat("kurt", "norm", list(mean = 2, sd = 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.