I'm trying to modify box sizes in the Taylor diagram that I created using the code in the below 
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)
