You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When resizing with figsize, the image itself does not get larger than a certain amount, only the whitespace around it.
Is it possible to increase the image size without compromising the resolution? Generating labels for the petals gets squishy when more information is needed.
The text was updated successfully, but these errors were encountered:
There's a few ways to do this. If you're creating an output file, you can keep the size of the image, reduce the fontsize, and call savefig with parameters like dpi=300 when saving to png etc, or save to a pdf, which is a vector format, therefore it won't get grainy at any zoom level.
Alternatively, you can pass both figsize and fontsize to the venn function: venn(yourdata, figsize=(20, 20), fontsize=24)
When resizing with figsize, the image itself does not get larger than a certain amount, only the whitespace around it.
Is it possible to increase the image size without compromising the resolution? Generating labels for the petals gets squishy when more information is needed.
The text was updated successfully, but these errors were encountered: