senselessDev
senselessDev
I also need this feature and started a quick hack: https://github.com/senselessDev/tikzplotlib/commit/b840a4fb7936bbf9f21a8f7602becbf22123777a It is not nice and does only support some plot types. It is a starting point at best. Unfortunately,...
Because I also stumbled over missing rectangles, I had a quick look through the code, but basically the comment of @eric-wieser contains everything necessary for a quick hack. So until...
A quick and dirty workaround: ```Python import matplotlib.pyplot import numpy import tikzplotlib ax = matplotlib.pyplot.subplot(111) # no projection='polar' here x_grid = numpy.linspace(0, 360, 100, endpoint=False) ax.plot(x_grid, numpy.random.random(100)) tikzplotlib.save('example.tex', standalone=True, extra_axis_parameters=[r'xticklabel...