Analytic Data

Internally, your analytic data takes the form of a table.

Your data is made up of one or more rows of data, each row containing at least one column, similar to a database or spreadsheet.

IndexColumn 1Column 2Column 3
Date/TimeValue 1Value 2Value 2
Date/TimeValue 1Value 2Value 2

If you are using buffering, your data will often have more than one row. Otherwise, the data from the source will usually just have a single row.

Technical Details

For those interested in developing filters, the data is in the form of a Pandas DataFrame, and filters often work by changing the contents of this DataFrame.