R apply()

Jmnote (토론 | 기여)님의 2019년 5월 10일 (금) 01:03 판 (새 문서: ==개요== ;R apply() <source lang='r'> mydf <- read.table( header=TRUE, stringsAsFactors=FALSE, text=" English Math 90 60 80 70 70 80 60 90 ") mydf ##...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

R apply()
mydf <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
English Math
     90   60
     80   70
     70   80
     60   90
")
mydf
##   English Math
## 1      90   60
## 2      80   70
## 3      70   80
## 4      60   90

colMeans(mydf)
## English    Math 
##      75      75

sapply(mydf, mean)
## English    Math 
##      75      75

apply(mydf, 2, mean)
## English    Math 
##      75      75

2 같이 보기

3 참고

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