Tim Hoffmann
Tim Hoffmann
I don't have a strong opinion either way. Out of curiosity: what makes multiple files more manageable? The main obstacle is finding the appropriate name for a figure. Whether I...
See the kwargs description of https://matplotlib.org/stable/api/_as_gen/matplotlib.axis.Axis.set_xticks.html#matplotlib.axis.Axis.set_xticks The parameters are only applied to ticks instances generated in this function. It does not affect the global setting for default tick params. `plt.xticks(rotation=90)`...
With two datasets I want to stress that `plot()` can make marker-only plots as well. I consider this important because otherwise people wanting to draw markers only would be guided...
The overall motivation is to avoid the association: `plot` is for lines and `scatter` is for markers, which the current simplification inevitably would promote. An important question for the styling...
> I use capital letters to indicate the variable is an array Numpy and matplotlib docs generally don't do this. Changing naming conventions (whether better or not) may be confusing.
> I think it might be nicer to add markers along the sine with marker and markevery. IMHO it's important to show independent lines and markers.
> for smaller datasets the difference is negligible & so you may as well not overload a function with two semantically distinct I argue the other way round: From the...
Is this getting off topic? IMHO cheat sheet theming is overkill. The original post was only stating that the thumbnails are partially transparent, which looks not great on a dark-themed...
[Sphinx gallery](https://sphinx-gallery.github.io/stable/index.html) might be worth a look: - Inputs can be .py files or notebooks. - It renders to a nice page (requires a sphinx setup) - You can download...
My original idea was that this setting was applied to the gallery thumbnails only. This would require an image option ``` .. image:: :loading: lazy ``` AFAICS, docutils has not...