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

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
2번째 줄: 2번째 줄:
;R tapply()
;R tapply()


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


==같이 보기==
==같이 보기==

2021년 4월 22일 (목) 00:45 기준 최신판

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 }}