# select only locations with a latitude above 45
ns_climate %>%
filter_locations(latitude > 45)
# select only params measured in mm
ns_climate %>%
filter_params(unit == "mm")
# select only june temperature from ns_climate
library(lubridate)
ns_climate %>%
filter_data(month(date) == 6)
Run the code above in your browser using DataLab