#!/usr/bin/env Rscript
library(magrittr)
library(reproseries)
library(readr)
library(docopt)
'Usage:
tidy-script.R <output_path>
]' -> doc
arguments <- docopt(doc)
nottem %>%
reproseries::temperatureSeriesToDf() %>%
reproseries::tidyTemperatures() %>%
readr::write_csv(path = arguments$output_path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.