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

19번째 줄: 19번째 줄:
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
<syntaxhighlight lang='r' notebook>
df2 <- df
apply(df, 1, mean)
df2$Sum <- rowMeans(df)
df2
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
<syntaxhighlight lang='r' notebook>
apply(df, 1, mean)
df$Sum <- rowMeans(df)
df
</syntaxhighlight>
</syntaxhighlight>



2021년 4월 13일 (화) 22:58 판

1 개요

R rowMeans()
  • Form Row Means
  • "행 평균", "가로 평균"
df <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
English Math Science
30      60   99
40      70   88
50      80   77
60      90   66
70      90   55
")
df
rowMeans(df)
apply(df, 1, mean)
df$Sum <- rowMeans(df)
df

2 같이 보기

3 참고

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