Get Log
get_log.Rd
Get Log
Usage
get_log(data, incl, incl.adsl)
# S3 method for data.frame
get_log(data, incl = TRUE, incl.adsl = TRUE)
# S3 method for list
get_log(data, incl = TRUE, incl.adsl = TRUE)
Arguments
- data
(
list
ofdata.frame
ordata.frame
) filtered withlog_filter
.- incl
(
flag
) should information about unfiltereddata.frame
be printed.- incl.adsl
(
flag
) should indication of filtering performed throughadsl
be printed.
Examples
data <- log_filter(iris, Sepal.Length >= 7, "xx")
data <- log_filter(data, Sepal.Length < 2)
data <- log_filter(data, Sepal.Length >= 2, "yy")
get_log(data)
data <- log_filter(
list(iris1 = iris, iris2 = iris),
Sepal.Length >= 7,
"iris1",
character(0),
"Sep"
)
get_log(data)
#> $iris1
#> [1] "Sep: Sepal.Length >= 7 [150 --> 13 rows.]"
#>
#> $iris2
#> [1] "No filtering [150 rows.]"
#>