pygsti.report.Results.get_table¶
-
Results.
get_table
(tableName, confidenceLevel=None, fmt='py', verbosity=0)¶ Get a report table in a specified format. Tables are created on the first request then cached for later requests for the same table. This method is typically used internally by other Results methods.
Parameters: - tableName (string) – The name of the table.
- confidenceLevel (float, optional) – If not None, then the confidence level (between 0 and 100) used to put error bars on the table’s values (if possible). If None, no confidence regions or intervals are included.
- fmt ({ ‘py’, ‘html’, ‘latex’, ‘ppt’ }, optional) – The format of the table to be returned.
- verbosity (int, optional) – How much detail to send to stdout.
Returns: The requested table in the requested format. ‘py’ and ‘ppt’ tables are objects, ‘html’ and ‘latex’ tables are strings.
Return type: string or object