iode.ComputedTable.gridy

property ComputedTable.gridy: TableGraphGrid

The gridy value of the table offers a choice of three Y-grid options:

  • MAJOR: draws a line across the entire graph at each main axis graduation

  • NONE: removes the grid from the graph.

  • MINOR: draws a line at all graduations

Returns:
TableGraphGrid

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.gridy
<TableGraphGrid.MAJOR: 0>