pylustrator
pylustrator copied to clipboard
Visualisations of data are at the core of every publication of scientific research results. They have to be as clear as possible to facilitate the communication of research. As data can have different...
First of all, awesome work! Thank you. Matplotlib folks suggest saving figure objects as a pickle for later modification. ```python3 import matplotlib.pyplot as plt import pickle # plot a fancy...
If I open a figure with size 15*15, the menu would be disappear (but just a tinny buggy for large image I guess) Here is a view for a full...
Hello, and thanks for the great tool! I am working on an package which generates plots for the user, and as implemented, `pylustrator` would be editing the source code of...
Calling `load` on a `SVG` file with `` nodes ``` File "/usr/local/lib/python3.7/dist-packages/pylustrator/parse_svg.py", line 643, in parseGroup patch_list.append(plt_draw_text(child, trans, style, ids, no_draw=no_draw)) File "/usr/local/lib/python3.7/dist-packages/pylustrator/parse_svg.py", line 330, in plt_draw_text text_content += child.firstChild.nodeValue...
Hi, first of all - thanks for a great package! I only used it for a while now but I already see how it will make my life easier. :)...
Not sure how, but turning on pylustrator causes matplotlib error without any reference in stack trace to pylustrator. Presumably something is being overridden or set in pylustrator.start() which causes matplotlib...
If the text element of the x label is deleted, it cannot be retrieved.
due to the fact that not xlabel but get_xaxis().get_label().set_text is now used.
Can pylustrator operate directly on a [`matplotlib.figure.Figure`](https://matplotlib.org/api/_as_gen/matplotlib.figure.Figure.html#matplotlib.figure.Figure)? It would be useful if I could modify a Figure object.