raws_filter | R Documentation |
A generalized data filter for raws_timeseries objects to
choose rows/cases where conditions are true. Multiple conditions are
combined with &
or separated by a comma. Only rows where the condition
evaluates to TRUE are kept.Rows where the condition evaluates to NA
are dropped.
raws_filter(rawsObject = NULL, ...)
rawsObject |
raws_timeseries object. |
... |
Logical predicates defined in terms of the variables in the
|
A subset of the incoming raws_timeseries
.
raws_filterDate
library(RAWSmet)
rawsObject <- example_cefa_Saddle_Mountain
daytime <- raws_filter(rawsObject, solarRadiation > 0)
head(daytime$data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.