ImSoErgodic / py-upset

A pure-python implementation of the UpSet suite of visualisation methods by Lex, Gehlenborg et al.
314 stars 57 forks source link

how to save plot? #6

Closed zqfang closed 8 years ago

zqfang commented 8 years ago

As title indicated, does pyupset have any mehtod that save figure?

ImSoErgodic commented 8 years ago

No, pyupset won't save the figure for you, however the output dictionary contains a reference to the figure the plot() method produces, so that you can call its savefig() method.

zqfang commented 8 years ago

Gotcha. Thanks, Im