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

2번째 줄: 2번째 줄:
;R tapply()
;R tapply()


<source lang='r'>
<source lang='r' run>
df <- read.table("https://raw.githubusercontent.com/shifteight/R/master/TRB/data/daphnia.txt",
df <- read.table("https://raw.githubusercontent.com/shifteight/R/master/TRB/data/daphnia.txt",
                 header=T)
                 header=T)
head(df)
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)
attach(df)
tapply(Growth.rate, Detergent, mean)
tapply(Growth.rate, Detergent, mean)
##  BrandA  BrandB  BrandC  BrandD
## 3.884832 4.010044 3.954512 3.558231
</source>
</source>



2021년 4월 22일 (목) 00:42 판

1 개요

R tapply()
df <- read.table("https://raw.githubusercontent.com/shifteight/R/master/TRB/data/daphnia.txt",
                 header=T)
head(df)
attach(df)
tapply(Growth.rate, Detergent, mean)

2 같이 보기

3 참고

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