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

5번째 줄: 5번째 줄:
x <- c(3,1,4,1,5,2,6,5)
x <- c(3,1,4,1,5,2,6,5)
table(x)
table(x)
#x
## x
#1 2 3 4 5 6  
## 1 2 3 4 5 6  
#2 1 1 1 2 1  
## 2 1 1 1 2 1  
</source>
</source>
<source lang='r'>
<source lang='r'>
table( c(3,1,4,1,5,2,6,5) )
table( c(3,1,4,1,5,2,6,5) )
#
##  
#1 2 3 4 5 6  
## 1 2 3 4 5 6  
#2 1 1 1 2 1  
## 2 1 1 1 2 1  
</source>
</source>



2019년 4월 26일 (금) 23:27 판

1 개요

R table()
x <- c(3,1,4,1,5,2,6,5)
table(x)
## x
## 1 2 3 4 5 6 
## 2 1 1 1 2 1
table( c(3,1,4,1,5,2,6,5) )
## 
## 1 2 3 4 5 6 
## 2 1 1 1 2 1

2 같이 보기

3 참고

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