tikzplotlib
tikzplotlib copied to clipboard
:bar_chart: Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX.
Both descriptions in the leged show the label of the second errorbar:  * the Python code ```python import matplotlib.pyplot as plt import numpy as np plt.style.use("ggplot")...
I didn't manage to simplify my code enough to generate a MWE because I don't understand when `tikzplotlib` decides to include the figure as external graphics. `tikzplotlib 0.9.9` generated a...
This example from seaborn does not create any output: https://seaborn.pydata.org/examples/scatterplot_sizes.html MWE python: ```python import tikzplotlib import seaborn as sns sns.set() planets = sns.load_dataset("planets") cmap = sns.cubehelix_palette(rot=-0.2, as_cmap=True) ax = sns.scatterplot(...
It seems matplotlib can not properly render histograms, when log scale is active for the y-axis and the absolute frequency is smaller than ~2.7, ie. 1 and 2. The Python...
The filled arrows of a streamplot do not rescale in tikz when the width and height of a tikzpicture is changed. There appear to be a difference in the way...
Hi everyone, I try to install tikzplotlib in my anaconda3 base environment (with python 3.8). I have tried both approaches described [here](https://anaconda.org/conda-forge/tikzplotlib). Both approaches, however, do not work and yield:...
Hi. First thanks for the great package. I have run into an issue that may be related to #86 (though I'm not sure). It appears that adding a legend to...
Dear all, I am trying to convert the following Python plot to Tikz:  Without the detail (created by using ax.inset_axes(...)), everything works perfectly fine. However, with it I cannot...
I've starting debugging #453 and found the place where the bug happens, but I don't know how to fix it. https://github.com/nschloe/tikzplotlib/blob/dc919b3c538544ecf4b3d86deaf2cb9b80f0af80/tikzplotlib/_util.py#L9 ```python def get_legend_text(obj): """Check if line is in legend."""...
# Description Scatter plots that use a colormap (and therefore **need** to contain the `scatter` bool, refer #479 ) currently do not handle marker modifications such as `edgecolors` correctly. The...