R tapply()

Jmnote (토론 | 기여)님의 2019년 5월 10일 (금) 22:20 판 (→‎개요)

1 개요

R tapply()
df <- read.table("https://raw.githubusercontent.com/shifteight/R/master/TRB/data/daphnia.txt",
                 header=T)
head(df)
##   Growth.rate Water Detergent Daphnia
## 1    2.919086  Tyne    BrandA  Clone1
## 2    2.492904  Tyne    BrandA  Clone1
## 3    3.021804  Tyne    BrandA  Clone1
## 4    2.350874  Tyne    BrandA  Clone2
## 5    3.148174  Tyne    BrandA  Clone2
## 6    4.423853  Tyne    BrandA  Clone2

attach(df)
tapply(Growth.rate, Detergent, mean)
##   BrandA   BrandB   BrandC   BrandD 
## 3.884832 4.010044 3.954512 3.558231

2 같이 보기

3 참고

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