plot icon indicating copy to clipboard operation
plot copied to clipboard

plotter: Add capability for colored scatter plots

Open btracey opened this issue 9 years ago • 2 comments

Feature request for having a plotter where data points are {x,y,z} values and the z values are plotted according to color. Scatter plots are useful when the data is not evenly spread throughout the space (so generating a grid for a heat-map is difficult), or when there is noise in the data, so there isn't really a 'surface' to plot.

All of the parts for colored-scatter exist. We can already plot 3-D scattered data where the glyph varies with the third dimension (plotter.Bubbles), and we can plot 3-D data where the color varies with the third dimension (Contour). Thus, in my opinion, the benefit to providing colored scatter greatly outweighs the small marginal maintenance cost of the extra plotter.

btracey avatar Apr 16 '15 21:04 btracey

Sad to see this was posted 2 years ago. But, I agree as I posted in #345. The HeatMap requires us to interpolate values and associate them with a grid. A palette colored scatter plot allows us to freely assign x / y values in continuous space colored by a z value.

drgrib avatar Apr 14 '17 23:04 drgrib

This is a straightforward plotter to write; take the codewalk shown for Bubbles and instead of setting the radius, set the colour based on a colour interpolation as done in HeatMap.

kortschak avatar Apr 15 '17 02:04 kortschak