为什么R和python的游程检验结果不一致?
R语言游程检验
library('tseries')
a=c(1, 1, 1, -1, -1, 1, -1, 1, -1, 1, 1, 1, -1, 1, -1, 1)
runtest1=runs.test(factor(a))
runtest1
Runs Test
data: factor(a)
Standard Normal = 1.3868, p-value = 0.1655
alternative hypothesis: two.sided
Python游程检验
from statsmodels.sandbox.stats.runs import runstest_1samp
x=[1, 1, 1, -1, -1, 1, -1, 1, -1, 1, 1, 1, -1, 1, -1, 1]
rst=runstest_1samp(x)
print(rst)
(1.1094003924504583, 0.26725749315438785)
两个pvalue相差好大,为什么呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论