plotting.taylor_diagram

plotting.taylor_diagram(
    obs_std,
    points,
    figsize=(7, 7),
    obs_text='Observations',
    normalize_std=False,
    ax=None,
    title='Taylor diagram',
)

Plot a Taylor diagram using the given observations and points.

Parameters

Name Type Description Default
obs_std float Standard deviation of the observations. required
points list of TaylorPoint objects or a single TaylorPoint object Points to plot on the Taylor diagram. required
figsize tuple Figure size in inches. Default is (7, 7). (7, 7)
obs_text str Label for the observations. Default is “Observations”. 'Observations'
normalize_std bool Whether to normalize the standard deviation of the points by the standard deviation of the observations. Default is False. False
title str Title of the plot. Default is “Taylor diagram”. 'Taylor diagram'

Returns

Name Type Description
matplotlib.figure.Figure The matplotlib figure object