climate_world | R Documentation |
Climate data downloaded from Japan Meteorological Agency web pages. URLs of each station are listed in data(station_links). https://www.data.jma.go.jp/gmd/cpd/monitor/nrmlist/
climate_world world_climate
A data frame with 41328 (3444 stations * 12 months) rows and 12 variable:
Station no
Continent. Escaped by stringi::stri_escape_unicode().
Country name. Escaped by stringi::stri_escape_unicode().
Station name. To avoid duplication, including country name after station name. Can split by "_". Escaped by stringi::stri_escape_unicode().
Month
Mean temperature
Mean precipitation
Latitude. (degree)
North or South.
Longitude. (degree)
West or East.
Altitude (m)
An object of class tbl_df
(inherits from tbl
, data.frame
) with 41328 rows and 12 columns.
library(magrittr) library(stringi) library(dplyr) data(world_climate) world_climate %>% dplyr::mutate_all(stringi::stri_unescape_unicode)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.