Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
2k views

How can I get Google Charts to display multiple colors in a scatter chart?

I would like to display multiple colors (and potentially shapes and sizes) of data points in a Google Chart scatter chart. Does anyone have an example of how to do so? Thanks, Kent Beck
4
votes
3answers
141 views

Write using mouse on R plot?

I created scattergram using the plot() function in R. Is there any possibility to draw on this graph? I would like to add a straight line and get parameters of it, but in my opinion abline() can be ...
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
45 views

How to efficiently do scattered summing with SSE/x86

I've been tasked with writing a program that does streaming sums of vectors into scattered memory locations, at the absolute max speed possible. The input data is a destination ID and an XYZ float ...
2
votes
3answers
94 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 ...
2
votes
1answer
231 views

MPI partition matrix into blocks

I want to partition matrix into blocks (not stripes) and then distribute this blocks using MPI_Scatter. I came up with solution which works, but I think it is far from "best practice". I have 8x8 ...
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
265 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
406 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
3answers
31 views

Matching Color in Legend in R plot

I'm just starting to use R and I'm trying to make a scatter plot which has different colors based on different attributes. For example: data.a = 1:5 data.b = 1:5 data.c = c("yes", "no", "yes", ...
1
vote
1answer
52 views

Having trouble executing the edits to scatter3d.default

This seems very helpful but I'm having trouble doing it. If I type car:::scatter.default it returns: Error in get(name, envir = asNamespace(pkg), inherits = FALSE) : object 'scatter.default' not found ...
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
1answer
145 views

sorting dotplot factor axis in ggplot

I have a data.frame with gene expression data and I want to create a graph in ggplot2. here's an example for my data frame: Gene.Name cell.type expression ABC heart 12 AZF ...
1
vote
3answers
353 views

matlab plot different colors

I have set of points (matrix Nx1) and groups for this points (matrix Nx1). I want to plot this points (there is no problem, I do this like this: plot(points, groups, 'o');), but I'd like to set unique ...
1
vote
2answers
296 views

Axis position in R scatterplot

I'm trying to create a simple scatter plot in R, where the x-axis range is -10:10, and to re-locate the y axis to the x=0 point. This seems like a fairly basic operation, but I found no way to do ...
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 ...
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
14 views

Drawing a 3D map with the Z dimension as a property

I want to visualise for example the population density of some place, so I have the population in vector z for 300 locations (300*1), and I have the x coordinate as the longitude of these locations, ...
0
votes
1answer
19 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: ...
0
votes
1answer
94 views

How do I change the opacity of a series in Highcharts?

Okay, so I graphed a scatter plot in highcharts. I want to make it so when I hover over a series, all of the other series dim. I've tried changing the fillOpacity and the color properties of the ...
0
votes
0answers
57 views

Scatter chart with google visualization doesn't show all the series

I need to create a scatter chart but I have a lot of points to show, I use this code: google.load("visualization", "1", { packages : ["corechart"] }); google.setOnLoadCallback(drawChart); function ...
0
votes
1answer
76 views

It's possible to have line charts with irregular data series (not time series) in javascript / html5? Are there libraries for that?

I need a javascript (HTML4/5) based library to draw a line chart that has irregular data (and one or more series). Here is an example: x-axis = [1, 2, 3, 4, 5, 6, 7, 8] series1 (y-axis) = [6, 10, ...
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
0
votes
1answer
150 views

axis range in scatter graphs

I have been using the code below to plot the time spent to run 4 functions. The x axis represents the number of executions whereas the y axis represents the time spent running a function. I was ...
0
votes
0answers
79 views

What is the performance limitation of a javafx scatter plot?

Can anyone tell me how many points a JavaFX scatter chart can display? The charts can be seen here. The charts look great, but just wondering about performance. Someone correct me if I'm wrong, but ...
0
votes
0answers
116 views

JFreeChart - scatter plot and line plot on one picture

I need to have scatter data and a line plot at the same picture. I'm able to create both plots separately but I don't know how to combine them.
0
votes
0answers
100 views

Google Scatter Chart Input Data limit

I am using Google Scatter chart to display some data points. plotting around 120 data points( 120 x, 120 y coordinates so total 240) works fine. However, the moment I give it one more tuple (x,y), I ...
0
votes
1answer
375 views

core plot help to draw two plots together

How to draw both bar and scatter plot together? I have created object of both in viewDidLoad and the datasource also read correctly. I add it to the same plotspace. But no use!
0
votes
0answers
54 views

How to display a simple zoomable/scrollable scatter map on web (see the map example)?

All, Just got stuck with a simple (?) problem. I need to display a zoomable/scrollable map on web: The map example The thing is that the map could be much bigger and have way more points in it. ...
0
votes
1answer
129 views

Scatter graph using php

I am developing a PHP application where users mark some locations using a flash interface. On the basis of which I am generating reports. I need to create reports on the basis of locations marked by ...
0
votes
1answer
537 views

JfreeChart: Scatter Plot moving X and Y Axises

I just started using JFreeChart lib. I have a XY scatter chart with some negative plot points. The X and Y axises stay at the bottom and left sides of the chart, and they intercept at negative values. ...
0
votes
1answer
97 views

flex scatterplot custom renderer

I have a scatter plot with 10 points, some points are above and below some thresh hold. I need to show different color for those above thresh hold below thresh hold within thresh hold ...
0
votes
2answers
665 views

Sending 2 dim array using scatter

I am a beginner in MPI, and i am using C Language, and Simulator for Processors (MPICH2), i wrote the following code to send a 2D array to make 2 processors take a line from it but it produces error ...
0
votes
1answer
543 views

Equal scale for both of X and Y in Zedgraph chart

Based on my experience with Zedgraph I could not set both of X and Y axes scale same to have a correct scatter graph! Assume we have a square grid of 10x10m cells in which each cell is a square shape ...