raws_getDataframe | R Documentation |
These functions are convenient wrappers for extracting the dataframes that
comprise a raws_timeseries object. These functions are designed to be useful when
manipulating data in a pipeline chain using %>%
.
raws_getData(rawsObject = NULL, forOpenair = FALSE)
raws_getMeta(rawsObject = NULL)
rawsObject |
raws_timeseries object to extract dataframe from |
forOpenair |
Logical instructions to clean data for use with openair |
A dataframe from the given raws_timeseries object
library(RAWSmet)
data <-
example_cefa_Saddle_Mountain %>%
raws_getData(forOpenair = TRUE)
# openair::timePlot(
# data,
# pollutant = "temperature"
# )
example_cefa_Saddle_Mountain %>%
raws_getMeta() %>%
head()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.