"Binom.test()"의 두 판 사이의 차이

잔글 (봇: R언어 binom.test() 문서를 가리키도록 이중 넘겨주기 고침)
1번째 줄: 1번째 줄:
#넘겨주기 [[R언어 binom.test()]]
;binom.test()
 
==Excel==
 
==R==
[[분류: R]]
{{참고|R언어 binom.test()}}
<source lang='r'>
> binom.test(27,50,.65)$p.value
[1] 0.1051942
> binom.test(27,50,.65,alternative="two.sided")$p.value
[1] 0.1051942
</source>
<source lang='r'>
> binom.test(27,50,.65,alternative="less")$p.value
[1] 0.07096126
</source>
<source lang='r'>
> binom.test(27,50,.65,alternative="greater")$p.value
[1] 0.9603589
</source>

2017년 7월 2일 (일) 22:31 판

binom.test()

1 Excel

2 R

> binom.test(27,50,.65)$p.value
[1] 0.1051942
> binom.test(27,50,.65,alternative="two.sided")$p.value
[1] 0.1051942
> binom.test(27,50,.65,alternative="less")$p.value
[1] 0.07096126
> binom.test(27,50,.65,alternative="greater")$p.value
[1] 0.9603589
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}