Skip to contents

Function creates a FilteredData object.

Usage

init_filtered_data(x, join_keys = teal.data::join_keys(), code, check)

Arguments

x

(named list) of datasets.

join_keys

(join_keys) see teal.data::join_keys().

code

[Deprecated]

check

[Deprecated]

Value

Object of class FilteredData.

Examples

datasets <- init_filtered_data(list(iris = iris, mtcars = mtcars))
datasets
#> FilteredData:
#> {
#>   "slices": [],
#>   "attributes": {
#>     "include_varnames" : {
#>       "iris"           : ["Sepal.Length", "Sepal.Width", ...
#>       "mtcars"         : ["mpg", "cyl", "disp", "hp", "dr...
#>     },
#>     "count_type"       : "none",
#>     "allow_add"        : true
#>   }
#> }