(2)其它分布
R提供了以下函数
指数分布 rexp(n, rate=1)
gama分布 rgamma(n, shape, scale=1)
泊松分布 rpois(n, lambda)
Weibull分布 rweibull(n, shape, scale=1)
Cauchy分布 rcauchy(n, location=0, scale=1)
beta分布 rbeta(n, shape1, shape2)
S(tudent)分布 rt(n, df)
Fisher-Snedecor rf(n, df1, df2)
Pearson rchisq(n, df)
二项式分布 rbinom(n, size, prob)
多项式分布 rmultinom(n, size, prob)
几何分布 rgeom(n, prob)
hypergeometric rhyper(nn, m, n, k)
logistic rlogis(n, location=0, scale=1)
lognormal rlnorm(n, meanlog=0, sdlog=1)
negative binomial rnbinom(n, size, prob)
uniform runif(n, min=0, max=1)
Wilcoxon's statistics rwilcox(nn, m, n), rsignrank(nn, n)
调用前缀是:
密度函数f(x)或分布律pk:d
累计概率密度函数(也即分布函数):p
分布函数的反函数,给概率求其下分位点:q
仿真,相同分布的随机数:r
4、分布图形
直方图
频率图
> hist(jiuye[["平均劳动报酬"]],freq=TRUE)