Home > Software design >  How to change box sizes in the Python code created by Abdelrazek Elnashar for Taylor diagram?
How to change box sizes in the Python code created by Abdelrazek Elnashar for Taylor diagram?

Time:01-27

I'm trying to modify box sizes in the Taylor diagram that I created using the code in the below enter image description here

CodePudding user response:

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)

See this link for details

  •  Tags:  
  • Related