How to save all matplotlib graphs in a batch without figsave them one by one. Just save Jupyter in Markdown. The save format of the graph is png.
The saved graph will be different from the one using matplotlib's savefig ("* .png ") even in the same png format.
figsave("a.png ")
Save with Markdown
I can't tell just by looking at it from a browser on a white background, so I will post a graph on a brown background.
figsave("a.png ")
Save with Markdown
If you want to make figsave transparent in the same way, you can use fig.patch.set_alpha (0).
reference Matplotlib makes only the margins of the figure transparent
Recommended Posts