Input files
Formatted input files are used to set up a custom dataset of time-series data, pieces of Matlab code to run (master operations), and associated outputs from that code (operations). By default, you can simply specify a custom time-series dataset and the default operation library will be used. In this section we describe how to initiate an hctsa analysis, including how to format the input files used in the hctsa framework.
Working with a default feature set using TS_Init
TS_Init
To work with a default feature set, hctsa or catch22, you just need to specify information about the time-series to analyze, specified by an input file (e.g., INP_ts.mat
or INP_ts.txt
). Details of how to format this input file is described below. A test input file, 'INP_test_ts.mat'
, is provided with the repository, so you can set up feature extraction for it using the hctsa feature set as:
or
And for catch22 as:
The full hctsa feature set involves significant computation time so it is a recommended first step to test out your analysis pipeline using a smaller, faster feature set like catch22 (but note that it is insensitvie to mean and standard deviation; to include them use catch24). This feature set is provided as a submodule within hctsa, and it is very fast to compute using compiled C code (the features are compiled on initial install
of hctsa (by running mexAll
from the Toolboxes/catch22
directory of hctsa).
TS_Init
produces a Matlab file, HCTSA.mat
, containing all of the structures required to understand the set of time series, operations, and the results of their computation (explained here). Through this initialization process, each time series will be assigned a unique ID, as will each master operation, and each operation.
Using custom feature sets
You can specify a custom feature set of your own making by specifying
The code to run (
INP_mops.txt
); andThe features to extract from that code (
INP_ops.txt
).
Details of how to format these input files are described below. The syntax for using a custom feature-set is as:
Time Series Input Files
When formatting a time series input file, two formats are available:
.mat
file input, which is suited to data that are already stored as variables in Matlab; or.txt
file input, which is better suited to when each time series is already stored as an individual text file.
Input file format 1 (.mat
file)
.mat
file)When using a .mat file input, the .mat file should contain three variables:
timeSeriesData
: either a N x 1 cell (for N time series), where each element contains a vector of time-series values, or a N x M matrix, where each row specifies the values of a time series (all of length M).labels
: a N x 1 cell of unique strings containing a named label for each time series.keywords
: a N x 1 cell of strings, where each element contains a comma-delimited set of keywords (one for each time series), containing no whitespace.
An example involving two time series is below. In this example, we add two time series (showing only the first two values shown of each), which are labeled according to .dat
files from a hypothetical EEG experiment, and assigned keywords (which are separated by commas and no whitespace). In this case, both are assigned keywords 'subject1' and 'eeg' and, additionally, the first time series is assigned 'trial1', and the second 'trial2' (these labels can be used later to retrieve individual time series). Note that the labels do not need to specify filenames, but can be any useful label for a given time series.
Input file format 2 (text file)
When using a text file input, the input file now specifies filenames of time series data files, which Matlab will then attempt to load (using dlmread
). Data files should thus be accessible in the Matlab path. Each time-series text file should have a single real number on each row, specifying the ordered values that make up the time series. Once imported, the time-series data is stored in the database; thus the original time-series data files are no longer required, and can be removed from the Matlab path.
The input text file should be formatted as rows with each row specifying two whitespace separated entries: (i) the file name of a time-series data file and (ii) comma-delimited keywords.
For example, consider the following input file, containing three lines (one for each time series to be added to the database):
Using this input file, a new analysis will contain 3 time series, gaussianwhitenoise_001.dat
and gaussianwhitenoise_002.dat
will be assigned the keywords noise
and gaussian
, and the data in sinusoid_001.dat
will be assigned keywords ‘periodic’ and ‘sine’. Note that keywords should be separated only by commas (and no whitespace).
Adding master operations
In our system, a master operation refers to a piece of Matlab code and a set of input parameters.
Valid outputs from a master operation are: 1. A single real number, 2. A structure containing real numbers, 3. NaN
to indicate that the input time series is not appropriate for this code.
The (potentially many) outputs from a master operation can thus be mapped to individual operations (or features), which are single real numbers summarizing a time series that make up individual columns of the resulting data matrix.
Two example lines from the input file, INP_mops.txt
(in the Database
directory of the repository), are as follows:
Each line in the input file specifies two pieces of information, separated by whitespace: 1. A piece of code and its input parameters. 2. A unique label for that master operation (that can be referenced by individual operations).
When the time comes to perform computations on data using the methods in the database, Matlab needs to have path access to each of the master operations functions specified in the database. For the above example, Matlab will attempt to run both CO_tc3(x_z,1)
and ST_length(x)
, and thus the functions CO_tc3.m
and ST_length.m
must be in the Matlab path. Recall that the script startup.m
, which should be run at the start of each session using hctsa, handles the addition of paths required for the default code library.
Modifying operations (features)
The input file, e.g., INP_ops.txt
(in the Database
directory of the repository) should contain a row for every operation, and use labels that correspond to master operations. An example excerpt from such a file is below:
The first column references a corresponding master label and, in the case of master operations that produce structure, the particular field of the structure to reference (after the fullstop), the second column denotes the label for the operation, and the final column is a set of comma-delimited keywords (that must not include whitespace). Whitespace is used to separate the three entries on each line of the input file. In this example, the master operation labeled CO_tc3_xz_1
, outputs is a structure, with fields that are referenced by the first five operations listed here, and the ST_length
master operation outputs a single number (the length of the time series), which is referenced by the operation named 'length' here. The two keywords 'correlation' and 'nonlinear' are added to the CO_tc3_1
operations, while the keywords raw
and lengthDependent
are added to the operation called length
. These keywords can be used to organize and filter the set of operations used for a given analysis task.
Last updated