首页 > 代码库 > Applied Nonparametric Statistics-lec2
Applied Nonparametric Statistics-lec2
Ref:
https://onlinecourses.science.psu.edu/stat464/print/book/export/html/3
The Binomial Distribution in R:
# return PMF. prob is the probability of success . x can be a list dbinom(x, size, prob) # CDF pbinom(x, size, prob) # returns a value for a particular percentile qbinom
The Normal Distribution in R:
# pdf dnorm(x, mean, sd) # cdf pnorm # percentile qnorm
要执行t-test或者查看置信区间,可以这样做:即设置数据、α的值。
> x=c(15, 18, 6, 20, 10, 11, 9, 6, 14, 14, 11, 8, 10, 1, 7, 1, 18, 17, 10, 9) > t.test(x, conf.level=0.95) One Sample t-test data: x t = 9.0705, df = 19, p-value = http://www.mamicode.com/2.473e-08>
如果是做假设检验,则需要设置μ0和备选假设。
> t.test(x, alternative="less", mu=10)
查看结果:
p值远大于0.05,所以,不能拒绝原假设。
Applied Nonparametric Statistics-lec2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。