── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
dbl (8): year, month, decimal date, average, deseasonalized, ndays, sdev, unc
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
global_co2 %>% janitor::clean_names() %>%mutate(yearmon = lubridate::make_date(year = year, month = month)) %>%ggplot(aes(x=yearmon, y = average)) +geom_line() +geom_line(aes(y= deseasonalized), color ="red") +theme_bw() +labs(x ="년월",y ="평균 CO2 농도",title ="월별 대기중 CO2 농도 추세")
인터랙티브 시각화를 위해 데이터를 년도별로 평균을 내어 이를 시각화하는데 사용한다.
global_co2 %>% janitor::clean_names() %>%group_by(year) %>%summarize( mean =mean(average)) %>%write_csv("data/co2_year.csv")
로컬 저장소에 저장한 csv 파일을 이제 Observable JS 로 불러와서 년도를 달리하여 \(CO_2\) 농도의 추세를 살펴본다.