Closed sunwillrise closed 5 years ago
Hello. Even if you put the figsize in la.crossplot() like eg.crossplot(figsize = (24, 24)) , the figsize doesn't change.
la.crossplot()
eg.crossplot(figsize = (24, 24))
This is because in latools.helpers.plot.crossplot(),
latools.helpers.plot.crossplot()
the code says
fig, axes = plt.subplots(nrows=numvar, ncols=numvar, figsize=(12, 12))
If you fix this as
fig, axes = plt.subplots(nrows=numvar, ncols=numvar, figsize=figsize)
then the problem will be fixed.
Hope this helps.
Hello. Even if you put the figsize in
la.crossplot()
likeeg.crossplot(figsize = (24, 24))
, the figsize doesn't change.This is because in
latools.helpers.plot.crossplot()
,the code says
If you fix this as
then the problem will be fixed.
Hope this helps.