I want to change the marker symbol on the Taylor Diagram using skillmetrics in python saying that
JavaScript
x
8
1
import skill_metrics as sm
2
import numpy as np
3
4
ss=np.array([34,32,33])
5
aa=np.array([0,3,2])
6
cc=np.array([1,.2,.7])
7
sm.taylor_diagram(ss,aa,cc,markerSymbol='*', titleOBS = 'Ref',colOBS = 'r', markerobs = '*')
8
but it resulting error mentioning as follow
ValueError: Unrecognized option: markersymbol
Everything working well if we leave no change the markerSymbol as default, but i need to customize the marker symbol, any suggestion please?
Advertisement
Answer
Thanks to mosc9575 fr enlighten me and I find the answer by updating the repos from here Request: Need to be able to change marker shape as well as color on the Taylor diagrams #19