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
2answers
134 views
graphing multiple types of plots (line, scatter, bar etc) in the same window
I'm trying to graph two types of plots in the same window (i.e. a line plot, and a scatter plot). The data being plotted in the line graph (first plot) are floating numerical values representing ...
2
votes
1answer
267 views
Python scatter plot with numpy-masked arrays
I'm stuck trying to mask data for a scatter plot. All data seems to plot.
I'm using numpy arrays as shown in the snippet below. I'm thinking that perhaps I cannot mask on the "c" array. I can't ...
2
votes
2answers
408 views
Partially transparent scatter plot, but with a solid color bar
In Python, with Matplotlib, how to simply do a scatter plot with transparency (alpha < 1), but with a color bar that represents their color value, but has alpha = 1?
Here is what one gets, with ...
1
vote
1answer
120 views
matplotlib: how can I convert a XYZ scatter to a pixel image?
I'm looking for some way in to convert a scatter plot (X vs Y, color normalized by Z) into a 2D "pixel" image. I.e. how can I plot a pixelized image where the pixels are colored according to a third ...
1
vote
2answers
3k views
Why won't my Python scatter plot work?
I created a very simple scatter plot using pylab.
pylab.scatter(engineSize, fuelMile)
pylab.show()
The rest of the program isn't worth posting, because it's that line that's giving me the problem. ...
0
votes
1answer
72 views
Matplotlib 3D scatter plot with color gradient
How can I create a 3D plot with a color gradient for the points? See the example below, which works for a 2D scatter plot.
Edit (thanks to Chris): What I'm expecting to see from the 3D plot is a ...
0
votes
0answers
60 views
Matplotlib scatter images
I have a bunch of images and I'd like to plot them so that each image has its location (x,y) , kind of scatter plots images as marker. Does anyone know how I could do that ?
Thanks a lot in advance