壮心未与年俱老,死去犹能作鬼雄。这篇文章主要讲述Applied Nonparametric Statistics-lec2相关的知识,希望能为你提供帮助。
Ref:
【Applied Nonparametric Statistics-lec2】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-testdata:x t = 9.0705, df = 19, p-value = https://www.songbingjia.com/android/2.473e-08 alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: 8.26943 13.23057 sample estimates: mean of x 10.75
如果是做假设检验,则需要设置μ0和备选假设。
> t.test(x, alternative="less", mu=10)
查看结果:
文章图片
p值远大于0.05,所以,不能拒绝原假设。
推荐阅读
- Snappy数据压缩 配置到Hadoop
- android读去txt 为string
- android側滑菜单-DrawerLayout的基本使用
- Mac和Windows的10大最佳iOS模拟器(哪个最好())
- 8款Windows 10的最佳免费DVD播放器软件合集
- 最新可用的23种最佳云游戏服务合集
- 16款最佳免费节拍制作软件合集(Windows和Mac)
- Windows 10的13款最佳免费音频声音均衡器合集
- Android APK安装过程学习笔记