p value
-
R을 이용한 통계분석 - 3 (R을 이용한 데이터 조작 및 가설검정 방법)Programming & Machine Learning/R X 머신러닝 2017. 7. 5. 23:03
1. 데이터 조작 1.1 데이터 생성 및 저장 # write data file write.xlsx(iris, 'iris.csv') methods(plot) # check methods a1 = iris a2 = cars save(a1, a2, file = 'a.rdata') # rdata save and load load('a.rdata') 1.2 데이터 manipulation x1 = matrix(1:15, nrow=5) x2 = matrix(1:15, nrow=5, byrow = T) rbind(x1,x2) # bind row data x3 = c(1,3) # concatenate vector data for(i in 1:10){ x3 = c(x3, i) } x4 = c(1,2,3) x5 = c(5,..