Skip to contents

Usage

make_list(...)

Arguments

...

any R objects

Value

a list as described above

Examples

#create three example variables for a list
x <- 1
y <- 2
z <- "hello"
#display the results
make_list( x , y , z )
#> $x
#> [1] 1
#> 
#> $y
#> [1] 2
#> 
#> $z
#> [1] "hello"
#>