iode.ComputedTable.nb_plotting_series

property ComputedTable.nb_plotting_series: int

Number of series to plot.

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 (one extra file) - 5 observations
>>> computed_table = tables["C8_1"].compute("2010[1;2]:5")
>>> computed_table              
   line title \ period[file]     |  10[1]   |  10[2]   |...|  14[1]   |  14[2]
--------------------------------------------------------...----------------------
Output potentiel                 |  6936.11 |  6797.39 |...|  7460.12 |  7310.91
Stock de capital                 | 11293.85 | 11067.97 |...| 12263.95 | 12018.67
Intensité de capital             |     0.39 |     0.38 |...|     0.36 |     0.35
Productivité totale des facteurs |     1.10 |     1.08 |...|     1.14 |     1.12

>>> computed_table.nb_plotting_series
8