A generalized data filter for a list of 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.

rawsList_filter(rawsList = NULL, ...)

Arguments

rawsList

List of raws_timeseries objects.

...

Logical predicates defined in terms of the variables in the rawsObject$data.

Value

A list of subsets of the elements of the given list of raws_timeseries objects.

Examples

if (FALSE) {
library(RAWSmet)

daytimeList <-
  example_cefaList %>%
  rawsList_filter(solarRadiation > 0)
}