사례 연구: R로 하는 탐색적 데이터 분석
Dave Robinson
Chief Data Scientist, DataCamp

ggplot(many_countries, aes(year, percent_yes)) +
geom_line() +
facet_wrap(~ country)

ggplot(many_countries, aes(year, percent_yes)) +
geom_line() +
facet_wrap(~ country, scales = "free_y")

ggplot(many_countries, aes(year, percent_yes)) +
geom_line() +
facet_wrap(~ country, scales = "free_y")

ggplot(many_countries, aes(year, percent_yes)) +
geom_line() +
facet_wrap(~ country, scales = "free_y")

사례 연구: R로 하는 탐색적 데이터 분석