Jason Gross
Jason Gross
```python # %% import numpy as np import matplotlib.pyplot as plt import seaborn as sns from tqdm.auto import tqdm import tikzplotlib # Generate scatter plot figures for different n (1...
Fixes #606 Not sure if this is the best way to do it, since it seems a bit kludgy, but it seems to work. On top of #607, to avoid...
This at least allows a workaround for #606
```python # %% import matplotlib as mpl import matplotlib.pyplot as plt import tikzplotlib # example from https://matplotlib.org/stable/users/explain/colors/colorbar_only.html#basic-continuous-colorbar fig, ax = plt.subplots(figsize=(6, 1), layout='constrained') cmap = mpl.cm.cool norm = mpl.colors.Normalize(vmin=5, vmax=10)...
Work around https://github.com/matplotlib/matplotlib/commit/1936c948476b7d58d10f2c50003a0b9c38f30477 Fixes #559 Closes #602 Closes #597 Closes #604 Overalps a bit with #540
As per https://github.com/nschloe/tikzplotlib/issues/559
Fixes #600
[colab](https://colab.research.google.com/drive/1QwOPw-Ncq3AwgvmVZGxqQ4Qc1jSdTmDq#scrollTo=TXhlBrGsp_Xl) ```python import matplotlib.pyplot as plt import seaborn as sns import numpy as np import tikzplotlib from matplotlib.colors import LinearSegmentedColormap # Define the custom colormap colors = [(0, '#ff0000'), (0.25,...
[Python code on colab generated by ChatGPT](https://colab.research.google.com/drive/19ExnyzF8GjnK3vfhUZ2JwQIHfFUC5U_Y?usp=sharing) ```python import matplotlib.pyplot as plt import tikzplotlib # Create a simple plot plt.figure() plt.plot([0, 1, 2], [0, 1, 0]) plt.title("Title with Newline\nCharacter") #...
This implements the fused-multiply-add primitive required by the IEEE 754 spec. Remaining questions / todos: - Should the spec match the Flocq spec more closely? The main differences are that...