oscarbranson / latools

Tools for the reproducible reduction of LA-ICPMS data.
http://latools.readthedocs.io
MIT License
15 stars 10 forks source link

figsize option in `plot.crossplot()` broken #40

Closed sunwillrise closed 5 years ago

sunwillrise commented 5 years ago

Hello. Even if you put the figsize in la.crossplot() like eg.crossplot(figsize = (24, 24)) , the figsize doesn't change.

This is because in 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.