Reads the data from a CSV file and creates the dataset.
read_dataset_csv(filename.data, filename.meta = NULL,
type = "undefined", description = "", label.x = NULL,
label.values = NULL, sample.names = NULL, format = "row",
header.col = TRUE, header.row = TRUE, sep = ",",
header.col.meta = TRUE, header.row.meta = TRUE, sep.meta = ",")
name of the data file.
name of the metadata file.
type of the data.
a short text describing the dataset.
the label for the x values.
the label for the y values.
the names of the samples.
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.
boolean value indicating if the metadata CSV file contains a header column with the name of the metadata variables.
boolean value indicating if the metadata CSV file contains a header row with the name of the samples.
the separator character of the metadata file.
Returns the dataset from the CSV file.