In Python, with Matplotlib, how can a scatter plot with empty circles be plotted? The goal is to draw empty circles around some of the colored disks already plotted by scatter(), so as to highlight them, ideally without having to redraw the colored circles.
| |||
|
feedback
|
|
From the documentation for scatter:
Try the following:
| |||
|
feedback
|
|
Would these work?
or using plot()
| |||
|
feedback
|
|
Here's another way: this adds a circle to the current axes, plot or image or whatever :
(The circles in the picture get squashed to ellipses because | |||
|
feedback
|
|
So I assume you want to highlight some points that fit a certain criteria. You can use Prelude's command to do a second scatter plot of the hightlighted points with an empty circle and a first call to plot all the points. Make sure the s paramter is sufficiently small for the larger empty circles to enclose the smaller filled ones. The other option is to not use scatter and draw the patches individually using the circle/ellipse command. These are in matplotlib.patches, here is some sample code on how to draw circles rectangles etc. | |||
|
feedback
|
