====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. ^Index^Column 1^Column 2^Column 3^ |Date/Time|Value 1|Value 2|Value 2| |Date/Time|Value 1|Value 2|Value 2| If you are using [[buffering|buffering]], your data will often have more than one row. Otherwise, the data from the [[source|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.