samplezoo {samplezoo} | R Documentation |
Generate Samples with a Variety of Probability Distributions
samplezoo(name)
name |
A character string specifying the dataset size. The three dataset sizes are:
|
The distributions included in each data frame are:
norm
: Normal distribution with mean and standard deviation parameters.
norm2
: Slight variation of the normal distribution.
norm3
: Another slight variation of the normal distribution.
binom
: Binomial (Bernoulli) distribution.
neg
: Negative binomial distribution.
pois
: Poisson distribution.
exp
: Exponential distribution.
unif
: Uniform distribution.
beta
: Beta distribution.
gamma
: Gamma distribution.
chisq
: Chi-squared distribution.
t_dist
: Student's t-distribution.
A dataset containing variables with common distributions.
small_data <- samplezoo("small")
medium_data <- samplezoo("medium")
large_data <- samplezoo("large")