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

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