"R tabulate()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;R tabulate()
;R tabulate()
<syntaxhighlight lang='r'>
<syntaxhighlight lang='r' notebook>
tabulate(c(2,3,5))
tabulate(c(2,3,5))
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='r'>
<syntaxhighlight lang='r' notebook>
tabulate(c(2,3,3,5), nbins=10)
tabulate(c(2,3,3,5), nbins=10)
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='r'>
<syntaxhighlight lang='r' notebook>
tabulate(c(-2,0,2,3,3,5))
tabulate(c(-2,0,2,3,3,5))
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='r'>
<syntaxhighlight lang='r' notebook>
tabulate(c(-2,0,2,3,3,5), nbins=3)
tabulate(c(-2,0,2,3,3,5), nbins=3)
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='r'>
<syntaxhighlight lang='r' notebook>
tabulate(factor(letters[1:10]))
tabulate(factor(letters[1:10]))
</syntaxhighlight>
</syntaxhighlight>

2022년 1월 18일 (화) 21:06 기준 최신판

1 개요[ | ]

R tabulate()
tabulate(c(2,3,5))
tabulate(c(2,3,3,5), nbins=10)
tabulate(c(-2,0,2,3,3,5))
tabulate(c(-2,0,2,3,3,5), nbins=3)
tabulate(factor(letters[1:10]))

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}