시각화
Shingles & Lattice
library(lattice) data('BankWages', package='AER') data(mtcars) 간단하게 조건부 이변수 산점도 그리기 xyplot(x ~ y | g, dat) 만약 조건 변수 g 역시 연속형이라면, 그…
시각화
ggplot2 tips 2
ggplot2 팁 (두번째) 데이터 불러오기 : 태양 흑점 library(ggplot2) library(dplyr) # 데이터 확인 head(sunspot.month) ## [1] 58.0 62.6 70.0 55.7 85.0 83.5…
데이터테이블
R data.table(데이터 테이블)
R data.table R shiny Korea meetup에서 R 데이터 테이블을 소개하는 발표를 했습니다. CRUD(Create/Read/Update/Delete) CRUD 정도는 DT[i/filter, j/summarise, by] 정도에서 모두 끝낼 수…
이론
Black Box 모형을 살펴보기: 모형의 예측, 과적합, 잔차 01
예측 모형 살펴보기 library(dplyr) library(ggplot2) library(randomForest) 예측 모형은 기본적으로 \(f(\vec{x})\) 이다.[1] 주어진 설명 변수 \(\vec{x}\) 에 대해 결과 변수 \(y\) 를 예측한다.…