load_from_tsv_file

load_from_tsv_file(full_file_path_and_name)[source]

Load data from a .tsv file into a numpy array.

tsv files are simply csv files with the class value as the first value. They only store equal length, univariate data, so are simple.

Parameters:
full_file_path_and_name: str

The full pathname of the .tsv file to read.

Returns:
data: np.ndarray

time series data, np.ndarray (n_cases, 1, n_timepoints)

ytarget variable, np.ndarray of string or int