iode.ComputedTable.graph_axis
- property ComputedTable.graph_axis: TableGraphAxis
Graph axis of the table allows you to select the type of axis:
VALUES : level
LOG: logarithmic scale
SEMILOG: semi-logarithmic scale
PERCENT: Y scale in percent from 0 to 100
- Returns:
- TableGraphAxis
Examples
>>> from iode import SAMPLE_DATA_DIR >>> from iode import Table, tables >>> tables.load(f"{SAMPLE_DATA_DIR}/fun.tbl") Loading .../fun.tbl 46 objects loaded >>> # simple time series (current workspace) - 6 observations >>> computed_table = tables["C8_1"].compute("2000:6") >>> computed_table.graph_axis <TableGraphAxis.VALUES: 0>