Closed
Description
Bug summary
Using marker sizes s
smaller than 1 on scatter plots result in hollow circles:
ax.scatter(X, Y, s=.05, c='white', marker='.')
Code for reproduction
from matplotlib import pyplot as plt
S = [4, 3, 2, 1, .5, .1, .01, .001]
N = len(S)
fig, ax = plt.subplots( figsize=(1,.2), layout='constrained')
ax.scatter(range(N), N*[0], s=S)
ax.axis('off')
Actual outcome
Expected outcome
Solid circles
Additional information
I want to plot streamlines on pyplot.tricontourf
and for reasons beyond me s=1
is already way to big (compare above).
I can't easily use the lines of pyplot.plot
as Comsol just gives me a chunk of (x, y)-pairs.
Operating system
Arch
Matplotlib Version
3.5.3
Matplotlib Backend
module://matplotlib_inline.backend_inline
Python version
Python 3.10.9
Jupyter version
3.6.1
Installation
Linux package manager
Metadata
Metadata
Assignees
Labels
No labels