After recent merge of #714, it would be nice to implement a new AxisType that could host a Taylor diagram.
What are Taylor diagrams:
A Taylor diagram is a mathematical plot designed to visually evaluate how closely multiple models or predictions match a set of reference (observed) data. Invented by Karl E. Taylor in 1994, it displays three distinct statistics simultaneously: correlation, standard deviation, and centered root-mean-square error (RMSE). (wikipedia)
For this to be implemented, we can inherit from PolarAxes and add back the features of adding x and y labels so the different axes can be plotted.
After recent merge of #714, it would be nice to implement a new
AxisTypethat could host a Taylor diagram.What are Taylor diagrams:
A Taylor diagram is a mathematical plot designed to visually evaluate how closely multiple models or predictions match a set of reference (observed) data. Invented by Karl E. Taylor in 1994, it displays three distinct statistics simultaneously: correlation, standard deviation, and centered root-mean-square error (RMSE). (wikipedia)
For this to be implemented, we can inherit from
PolarAxesand add back the features of adding x and y labels so the different axes can be plotted.