View source: R/rawsDF_filter.R
rawsDF_filter | R Documentation |
A generalized data filter for rawsDF 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.
rawsDF_filter(rawsDF = NULL, ...)
rawsDF |
rawsDF object. |
... |
Logical predicates defined in terms of the variables in the
|
A subset of the incoming rawsDF
.
rawsDF_filterDate
library(RAWSmet)
rawsObject <- example_cefa_Saddle_Mountain
rawsDF <- rawsObject %>% raws_toRawsDF()
daytime <- rawsDF_filter(rawsDF, solarRadiation > 0)
head(daytime)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.