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

 
(사용자 2명의 중간 판 27개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;R table()
;R table()


<source lang='r'>
==벡터==
<syntaxhighlight lang='r' run>
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
</syntaxhighlight>
#1 2 3 4 5 6
<syntaxhighlight lang='r' run>
#2 1 1 1 2 1
</source>
<source lang='r'>
table( c(3,1,4,1,5,2,6,5) )
table( c(3,1,4,1,5,2,6,5) )
#
</syntaxhighlight>
#1 2 3 4 5 6
<syntaxhighlight lang='r' run>
#2 1 1 1 2 1  
table( c("a","b","b","c","c","c","d") )
</source>
</syntaxhighlight>
 
==데이터프레임 컬럼==
<syntaxhighlight lang='r' notebook>
table(iris$Species)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
v <- c(1, 'hello', 1, 'world', 'hello')
table(v)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
summary(warpbreaks)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
table(warpbreaks$wool,warpbreaks$tension)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
scores <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class  Name variable value
    A Alice  English    90
    A  Bob  English    80
    B  Dave  English    60
    A Alice    Math    60
    B Carol    Math    80
    B  Dave    Math    90
")
table( scores$variable )
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
table( scores$value )
</syntaxhighlight>
 
==table()과 ddply()==
<syntaxhighlight lang='r' notebook=3>
library(plyr)
table(baseball[1:100,]$year)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook=3>
ddply(baseball[1:100,], ~year, nrow)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook=3>
ddply(baseball[1:100,], 'year', nrow)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook=3>
ddply(baseball[1:100,], .(year), nrow)
</syntaxhighlight>


==같이 보기==
==같이 보기==
{{z컬럼3|
* [[R xtabs()]]
* [[R ddply()]]
* [[R factor()]]
* [[R ftable()]]
* [[R unique()]]
* [[R is.table()]]
* [[R as.table()]]
* [[R tabulate()]]
* [[R tabulate()]]
* [[R ftable()]]
* [[R summary()]]
* [[R factor()]]]
* [[R xtabs()]]
* [[R margin.table()]]
* [[R prop.table()]]
* [[R prop.table()]]
* [[R addmargins()]]
* [[R addmargins()]]
* [[R summary()]]
* [[R margin.table()]]
* [[R 분할표]]
* [[R 그룹별 건수 구하기]]
* [[함수 array_count_values()]]
}}


==참고==
==참고==
* https://www.rdocumentation.org/packages/base/versions/3.5.3/topics/table
* https://www.rdocumentation.org/packages/base/versions/3.5.3/topics/table


[[분류: R]]
[[분류: R base]]

2021년 10월 26일 (화) 19:38 기준 최신판

1 개요[ | ]

R table()

2 벡터[ | ]

x <- c(3,1,4,1,5,2,6,5)
table(x)
table( c(3,1,4,1,5,2,6,5) )
table( c("a","b","b","c","c","c","d") )

3 데이터프레임 컬럼[ | ]

table(iris$Species)
v <- c(1, 'hello', 1, 'world', 'hello')
table(v)
summary(warpbreaks)
table(warpbreaks$wool,warpbreaks$tension)
scores <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class  Name variable value
    A Alice  English    90
    A   Bob  English    80
    B  Dave  English    60
    A Alice     Math    60
    B Carol     Math    80
    B  Dave     Math    90
")
table( scores$variable )
table( scores$value )

4 table()과 ddply()[ | ]

library(plyr)
table(baseball[1:100,]$year)
ddply(baseball[1:100,], ~year, nrow)
ddply(baseball[1:100,], 'year', nrow)
ddply(baseball[1:100,], .(year), nrow)

5 같이 보기[ | ]

6 참고[ | ]

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