R에서 data frame에서 한 조건를 바탕으로 하는 정보를 보고 싶을 때 유용하다.


select table.a from table where table.b = 10 와 같은 느낌으로 코딩할 수 있다. 



employees <- read.csv("employees.csv",header=TRUE)


typeof(employees)

[1] "list"


> sd(employees$a[employees$b==TRUE])

[1] 3.077446



> summary(employees$a[employees$b==FALSE])

   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 

  1.700   4.300   5.000   4.994   5.700   8.100 



이외 histgram에서도 쓸 수 있기 때문에, 편리하게 그림으로 볼 수도 있다.


> hist(employees$a[employees$b==TRUE], breaks=50, plot = TRUE)




Posted by '김용환'
,