_images/calypso.png

QQ plot

This function provides Quantile-Quantile plots (Q-Q plots) for comparison statistics.

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: measured name: str

Name of the Y axis

modelled name: str

Name of the X axis

measured unit: str

Unit of the Y axis

modelled unit: str

Unit of the X axis

Quantile increment step (%): float

Quantile increment step in percentage

display: str

On or Off to display image

folder out: str

Path to save the output

Examples:

>>> df=tf['test1']['dataframe'].StatPlots.QQ_plot(measured='U',modelled='U_m')
>>>