The function loads a dataset from a text file, where each row (resp. column) represents a data series when MARGIN is 2 (resp. 1), using the character sep as attribute separator. Each data sequence should be stored in a given column, (resp. row).
march.dataset.loadFromFile(filename, MARGIN = 2, sep = ",", weights = NA)The complete path to the text file containing the dataset.
The dimension of the extracted data.frame that contains the sequences (resp 1 for the column, 2 for the rows).
A caracter used as element separator on a line.
If specified, contains the weight of each sequence.
a march.Dataset object containing the data from the file found at filename, using separator
sep.