Reads the data from the CSV file.
read_data_csv(filename, format = "row", header.col = TRUE,
header.row = TRUE, sep = ",")
name of the file with the data.
format which the data are in the CSV file. It can be "row" if the samples are in the rows or "col" if the samples are in the columns.
boolean value indicating if the CSV contains a header column with the names of the samples or variables.
boolean value indicating if the CSV contains a header row with the names of the samples or variables.
the separator character.
Returns a numeric matrix with the data.