AQLHistResponse

The AQLHistResponse class is part of the ARDI Python API.

It includes both the Pandas dataframe containing your historical information, and the metadata dictionary about the columns in the dataframe.

This allows you to not only get the data values, but also have access to the attributes of the properties, such as units, min and max values, colour mapping and - for discrete values - how to map those numeric values into human-readable strings.

History Data

You can access the Pandas dataframe with object.data.

results = report.FetchHistory("'Temperature' PROPERTY ALLPOINTS")
print(str(results.data))

Functions

GetColumnData - Gets the dictionary of column metadata for a named column.

GetColumnColour - Gets the colour for a particular column value.

GetColumnText - Gets the text for a particular column value.

GetColourMap - Returns a dictionary for converting property values to colours.

GetValueMap - Returns a dictionary for converting property values to text.