| cities_temperature | R Documentation | 
Average temperatures between 1975 and 2010 of 20 major cities of the world. Source.
Site coordinates for this dataset are in cities_coordinates.
The full dataset with 100 cities can be downloaded from https://github.com/BlasBenito/distantia/blob/main/data_full/cities_temperature.rda (use the "Download raw file" button).
data(cities_temperature)
data frame with 3 columns and 52100 rows.
Other example_data: 
albatross,
cities_coordinates,
covid_counties,
covid_prevalence,
eemian_coordinates,
eemian_pollen,
fagus_coordinates,
fagus_dynamics,
honeycomb_climate,
honeycomb_polygons
data("cities_temperature")
#to time series list
cities <- tsl_initialize(
  x = cities_temperature,
  name_column = "name",
  time_column = "time"
)
#time series plot
if(interactive()){
 #only four cities are shown
 tsl_plot(
  tsl = tsl_subset(
    tsl = tsl,
    names = 1:4
    ),
  guide = FALSE
  )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.