View source: R/multiscaleSVDxpts.R
read_simlr_data_frames | R Documentation |
This function reads a list of data frames from disk into a list, assuming the files are named with a common prefix and the names of the data frames. It converts the column named 'X' to the row names of the read data frame.
read_simlr_data_frames(file_prefix, data_names, verbose = FALSE)
file_prefix |
A character string used as the prefix for the filenames. |
data_names |
A character vector of names for the data frames. |
verbose |
boolean |
A list of data frames read from disk with the column named 'X' set as row names.
# data_names <- c("data1", "data2")
# data_list <- read_simlr_data_frames(file_prefix = "output", data_names = data_names)
# dim(data_list[[1]])
# dim(data_list[[2]])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.