get_log | R Documentation |
Get Log
get_log(data, incl, incl.adsl)
## S3 method for class 'data.frame'
get_log(data, incl = TRUE, incl.adsl = TRUE)
## S3 method for class 'list'
get_log(data, incl = TRUE, incl.adsl = TRUE)
data |
( |
incl |
( |
incl.adsl |
( |
character
or list of character
describing the filtering applied to data
.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.