형태와 변환

R로 하는 탐색적 데이터 분석

Andrew Bray

Assistant Professor, Reed College

다봉성

스크린샷 2019-08-08 오후 8.46.20.png

R로 하는 탐색적 데이터 분석

왜도

ch3_3.003.png

R로 하는 탐색적 데이터 분석

왜도

ch3_3.004.png

R로 하는 탐색적 데이터 분석

왜도

ch3_3.005.png

R로 하는 탐색적 데이터 분석

소득의 분포 형태

ggplot(life, aes(x = income, fill = west_coast)) +
  geom_density(alpha = .3)

ch3_3.009.png

R로 하는 탐색적 데이터 분석

소득의 분포 형태

ggplot(life, aes(x = income, fill = west_coast)) +
  geom_density(alpha = .3)

ggplot(life, aes(x = log(income), fill = west_coast)) + geom_density(alpha = .3)

ch3_3.012.png

R로 하는 탐색적 데이터 분석

연습해 봅시다!

R로 하는 탐색적 데이터 분석

Preparing Video For Download...