BIAS plot¶
This function provides a bias histogramm between measured and predicted data for any variables
Parameters¶
- measuredstr
Name of the column to contain the measured data.
- modelledstr
Name of the column to contain the modelled data.
- args: dict
Dictionnary with the folowing keys: Nb of bins: int
Number of bins to use
- Xlabel: str
X axis label
- Units: str
Units of the data
- display: str
On or Off to display image
- folder out: str
Path to save the output
Examples:¶
>>> df=tf['test1']['dataframe'].StatPlots.BIAS_histogramm(measured='U',modelled='U_m')
>>>