read_simlr_data_frames.Rd
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)
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]])