Tagged Questions
3
votes
4answers
1k views
How to do a scatter plot with empty circles in Python?
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 ...
2
votes
3answers
96 views
Matplotlib scatterplot; colour as a function of a third variable
I want to make a scatterplot (using matplotlib) where the points are shaded according to a third variable. I've got very close with this:
plt.scatter(w, M, c=p, marker='s')
where w and M are the ...
1
vote
1answer
664 views
Scatter Graph with multiple “scatter lines”
Ok, I know about JFreeChart and others, but I'm coding my own simple scatter graph. I've already got a box chart down (without y-axis labels but that shouldn't be a huge problem when I explain it in ...
0
votes
1answer
20 views
How can JFreeChart print a scatter point directly on the x axis?
I try to make a scatter chart but the data point is not exactly at the (2,0) coordinate and only partly visible.
The image shows the generated output from JFreeChart:
...