案例研究: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 中的探索性数据分析