data_list {CellBench} | R Documentation |
Constructor for a list of data, a thin wrapper around list() which checks that all the inputs are of the same type and have names
data_list(...)
... |
objects, must all be named |
a list of named data
data(iris) flist <- data_list( data1 = iris[1:20, ], data2 = iris[21:40, ] )