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

5번째 줄: 5번째 줄:
mydf <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
mydf <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
English Math
English Math
     90   60
     30   60
     80   70
     40   70
     70   80
     50   80
     60  90
     60  90
")
")
mydf
mydf
##  English Math
##  English Math
## 1      90   60
## 1      30   60
## 2      80   70
## 2      40   70
## 3      70   80
## 3      50   80
## 4      60  90
## 4      60  90


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


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


apply(mydf, 2, mean)
apply(mydf, 2, mean)
## English    Math  
## English    Math  
##      75     75  
##      45     75  
</source>
</source>



2019년 5월 10일 (금) 01:11 판

1 개요

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

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

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

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

2 같이 보기

3 참고

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