PeterRochford / SkillMetrics

A Python library for calculating and displaying the skill of model predictions against observations.
GNU General Public License v3.0
201 stars 92 forks source link

RMSD with excessive precision (showing an excessive number of decimal places) #51

Closed A-Infor closed 2 weeks ago

A-Infor commented 2 weeks ago

How to fix this? Rounding the values of the np.array isn't the solution.

crmsd = np.array([0, round(training_RMSE, 1), round(testing_RMSE, 1)])

Taylor Diagram  - Model ESPINOSA applied to ESPINOSA Taylor Diagram  - Model ESPINOSA applied to GAMELEIRAS Taylor Diagram  - Model ESPINOSA applied to MAMONAS Taylor Diagram  - Model ESPINOSA applied to MONTE AZUL Taylor Diagram  - Model ESPINOSA applied to MONTEZUMA Taylor Diagram  - Model ESPINOSA applied to SANTO ANTÔNIO DO RETIRO
A-Infor commented 2 weeks ago

rmsLabelFormat = '0:.1f'

Reference: SkillMetrics Wiki - Taylor Diagram Options