Issue
I'm trying to modify box sizes in the Taylor diagram that I created using the code in the below link. I'd be so glad if someone could me explain how I can change the box sizes in the following code. Thanks in advance.
Solution
I think in the call
dia.add_sample(i[0], i[1], label=i[2], c=i[3], marker='s')
you just need to add the argument markersize
, e.g.
dia.add_sample(i[0], i[1], label=i[2], c=i[3], marker='s',markersize=12)
Answered By - Adrian Tompkins
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.