| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
pdfplot is a Python library for easily managing your matplotlib figures as PDF files.
Use the package manager pip to install pdfplot.
pip install pdfplotimport pdfplot
fig, ax = pdfplot.make_fig()
ax.plot([0, 1, 2, 3], [4, 3, 2, 1])
ax.set_title('First Plot plot!')
fig, ax = pdfplot.make_fig()
ax.plot([0, 1, 2, 3], [1, 2, 3, 4])
ax.set_title('Second plot!')
pdfplot.save_figs(folder='figures')Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
| Back | FazBrowse Home | New Git URL |