728x90

R에서 제공하는 내장 함수들은 매우 다양합니다. 아래는 주요 내장 함수들을 카테고리별로 정리한 리스트입니다.

### (1) 기초 통계 함수
mean(), median(), sd(), var(), sum(), min(), max(), range(), quantile(), summary()

### (2) 수학 함수
abs(), sqrt(), exp(), log(), log10(), log2(), round(), ceiling(), floor(), trunc(), cos(), in(), tan(), acos(), asin(), atan()

### (3) 데이터 조작 함수 
length(), unique(), table(), sort(), rev(), append(), c(), which(), match(), subset(), erge(),
 aggregate()

### (4) 데이터 생성 함수
 seq(), rep(), sample(), gl() expand.grid()

### (5) 난수 생성 함수
 set.seed(), runif(), rnorm(), rbinom(), rpois(), rexp(), rgamma(), rchisq(),

### (6) 데이터 프레임 함수
 data.frame(), read.table(), read.csv(), write.table(), write.csv(), head(), tail(), names(), olnames(), rownames(), dim(), nrow(), ncol()

### (7) 데이터 변환 함수
 as.numeric(), as.character(), as.factor(), as.Date(), as.matrix(), as.data.frame(), as.list()

### (8) 그래픽 함수
 plot(), hist(), boxplot(), barplot(), pairs(), coplot(), contour(), image(), heatmap(),
 qqplot(), qqnorm(), curve(), abline(), points(), lines(), text(), title(), legend(),

### (9) 문자열 처리 함수
 nchar(), substr(), strsplit(), paste(), toupper(), tolower(), grep(), grepl(), sub(), gsub()

### (10)  기타 유용한 함수
 list(), unlist(), factor(), levels(), cut(), split(), gl(), interaction(), combn(), mapply(), lapply(), sapply(), tapply(), apply(), by(), 

R에서 자주 사용되는 내장 함수들의 일부입니다. 각 함수는 특정 목적에 맞게 설계되어 있으며, 다양한 데이터 분석 및 처리 작업을 수행할 수 있게 도와줍니다. R의 공식 문서와 도움말을 통해 더 자세한 정보와 사용법을 확인할 수 있습니다.

<img src='https://wikidocs.net/images/page/6158/r_r_fun_01.jpg' style="width:600px; height:500px; border: 2px solid black;"> 

+ Recent posts