chump.operations.stat

stat is a command used to calculate the statistics of simulation error for each site/well for the stat objects defined in the configuration file.

Example:

>>> chump.exe stat example.toml
data: dict

data or keys starting with 'data' (e.g. data1, data2 .. or data_new) set the data object.

Example:

>>> data  = {tseries='simhead'}
>>> data  = {pstres='head', tseries='head1'}
>>> data1 = {pstres='head'}
>>> data2 = {tseries='head1'}
exttable: dict | list

exttable sets table object to join with the attribute table of this object. Default is None. If idcol is defined, the statistics will be aggregated by the idcol.

Example:

>>> exttable = {csv = 'geology_unit'}
xcol: str

xcol is name of the column that used to subtract from simulated values. Default is 'Observed'.

Example:

>>> xcol = 'obs'
def run(self):