The scatter tag has no wiki summary.
2
votes
1answer
788 views
d3.js: How to add labels to scatter points on graph
I am trying to add labels to the scatter points on this graph: http://bost.ocks.org/mike/d3/workshop/dot-chart.html
I thought that modifying this code a little bit would work, but it didn't:
...
0
votes
0answers
30 views
MPI Scatter part of matrix (indexed type)
I tried scattering parts of matrix (main diagonal of matrix, elements above and below it). For this I created 3 MPI_type_indexed datatypes, but I still don`t know how to scatter its.
I need this ...
0
votes
0answers
58 views
Drawing a graph using c#
I've constructed a windows form app. the windows form will take 1 year from the user and then it will decrease it 4 times. for example, if the user entered 2010, the other 4 texboxes will show 2006, ...
1
vote
2answers
51 views
Adding regression to scatter plot in R
I want to add regression to my scatter plot in R and to make elevation independent while snowfall dependent. I know how to construct a simple scatter plot - but using regression and making elevation ...
0
votes
1answer
66 views
OpenOffice Calc chart not showing my datapoints?
OK, I have searched for an answer to this for ages, so please don't give me minus points :)
I want to make a simple XY scatter graph in OpenOffice Calc, however when I have selected the X and Y ...
-7
votes
0answers
58 views
I cannot populate a scatter plot with my datasets [closed]
I am trying to populate a scatter plot using R. I am getting an error saying
"Error in strsplit(log, NULL) : non-character argument"
My datasets are like this:
> Dat1 = scan()
1: 66
2: 32
...
6
votes
4answers
3k 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?
2
votes
2answers
65 views
Understanding matplotlib verts
I'm trying to create custom markers in matplotlib for a scatter plot, where the markers are rectangles with fix height and varying width. The width of each marker is a function of the y-value. I tried ...
0
votes
1answer
45 views
Matplotlib 3D Scatter - Equal Aspect Ratio
I'm trying to make a 3D scatter plot using matplotlib. The issue I'm running into is that the plot isn't using a 1:1 aspect ratio between all pairs of the axes. Would anyone know how to fix this?
My ...
0
votes
1answer
314 views
NVD3 javascript: add colors to points in a scatter plot
I am trying to make a scatter plot from some data with x, y, and z values.
My code is the same as the example on the NVD3 website,
http://nvd3.org/ghpages/scatter.html, except I also calculate a z ...
1
vote
1answer
178 views
Changing the colors of the specific dots in scatterplot vba excel
I would like to change the color of dots in top left part of the scatterplot.
I wrote a macro, no errors occured but the color did not change :/
Any ideas why it does not work ?
Many thanks in advance ...
1
vote
1answer
191 views
Saving scatterplot animations with matplotlib produces blank video file
I am having a very similar problem to this question
but the suggested solution doesn't work for me.
I have set up an animated scatter plot using the matplotlib animation module. This works fine ...
0
votes
0answers
42 views
How to programmatic extract certain data from a flash site?
I'm working on a software that needs to extract information from this site http://www.lolking.net/, its a statistics data site for a online mmo PC game (but that's not important).
the idea is that ...
2
votes
0answers
121 views
X,Y Scatter Plot with Animation
I'm looking for a way to graph multiple point within an (X,Y) plane, and have them appear (then disappear) one at a time. I have a total of about 400 (x,y) points, which are position tracking ...
2
votes
1answer
1k views
d3.js scatter plot - zoom/drag boundaries, zoom buttons, reset zoom, calculate median
I've built a d3.js scatter plot with zoom/pan functionality. You can see the full thing here (click 'Open in a new window' to see the whole thing):
http://bl.ocks.org/129f64bfa2b0d48d27c9
There are a ...
1
vote
1answer
57 views
Scatter array to only worker tasks
I have an array that stores arrays (called sendbuff), and I would like to send those arrays to other threads by using MPI::Scatter.
sendbuff
##### ...
5
votes
1answer
1k views
matplotlib scatter plot colour as function of third variable
I would like to know how to make matplotlib's scatter function colour points by a third variable.
Questions
gnuplot linecolor variable in matplotlib? and Matplotlib scatterplot; colour as a function ...
1
vote
2answers
104 views
turn scatter data into binned data with errors bars equal to standard deviation
I have a bunch of data scattered x, y. If I want to bin these according to x and put error bars equal to the standard deviation on them, how would I go about doing that?
The only I know of in python ...
1
vote
1answer
128 views
showing similar value in x and y-axis in matlab
i have matrix as below;
from the calculation there will be some value that will be have same value to each other when plotting in graph (i used scatter plot),
the question here is how to know/identify ...
-1
votes
1answer
28 views
finding similar value [duplicate]
i want to find multiplication that give the same value (of x-axis and y-axis) when plotted in graph.
is there any easiest way to find in?
i have used find but matlab told me that the argument is ...
2
votes
1answer
491 views
matplotlib - 3D plots - combining scatter plot with surface plot
I'm rather new to matplotlib.
I want to combine a 3D scatter plot with a 3D surface plot.
Do you have any hints for me?
0
votes
0answers
82 views
Scattering on CUDA
I'm trying to implement the following:
for (unsigned int j = 0; j < numElems; ++j) {
unsigned int bin = (input[j] & mask) >> offset;
output[source[bin]] = input[j];
source[bin]++;
...
1
vote
1answer
115 views
Scatter Plot in Matlab
I have a set of data:
A = [2/3 -1/3 -1/3 ; -1/3 2/3 -1/3 ; -1/3 -1/3 2/3]
B = [ 0 0 0 ]
C = [ 0 0 1 ]'
D = [ 0 1 0 ]'
p00 =A*B-A*B
p01 =A*B-A*C
p02 = A*B-A*D
and so on...
I need to do a scatter ...
-2
votes
1answer
54 views
Kuznets curve in R [closed]
Im trying to plot a Kuznets curve in R. The two variables are co2 per capita and gdp per capita.
Can anyone please help me on the way to get a Kuznetz shaped curve?
Thanks!
2
votes
1answer
875 views
d3.js zoom/drag scatter plot
I'm working on a d3.js scatter plot and I want it to be zoomable without resizing the dots. I've based it on http://static.cybercommons.org/js/d3/examples/zoom-pan/zoom-pan.html which has working ...
1
vote
1answer
79 views
modifying matplotlib's scale
I have managed to produce a scatter plot which has a scale 1:1 using the command plt.axis('equal'), but the output contains too much white space on the sides. I have been looking for a way to remove ...
6
votes
1answer
1k views
pyplot scatter plot marker size
In the pyplot document for scatter plot:
matplotlib.pyplot.scatter(x, y, s=20, c='b', marker='o', cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, faceted=True, verts=None, ...
2
votes
1answer
257 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
173 views
Macro to loop and create charts
I need to create charts for a significant amount of data and I found a fantastic solution on this forum, referenced below. I was primarily able to edit this macro to do what i need it to do but i have ...
0
votes
1answer
112 views
How to set_gid() for each bubble in matplot scatter chart?
I draw a scatter chart by below codes:
import matplotlib.pyplot as plt
x = [2,4,6]
y = [1,3,7]
r = [650,890,320]
clr = ['r','b','g']
bubble_id = ['C0','C1','C2']
H0 = plt.scatter(x,y,s=r,c=clr)
...
3
votes
1answer
120 views
MPI partition array into blocks and Send
I am trying to find a maximum element of an array using MPI in C language. I have to compare the time it takes to send and calculation of the maximum using vs MPI_Scatter functions. MPI_Send: Here' ...
0
votes
0answers
83 views
making a diagonal marginal histogram in matlab?
I'm trying to make a diagonal marginal histogram. I have a scatter plot of (x,y) pairs and I'm comparing two conditions, so I'd like a histogram straddling the unity line (the line with slope 1 that ...
0
votes
0answers
252 views
Java (Android) Atmospheric Scattering Rayleigh/Mie Caculcation Problems GLES 2.0
OK, here goes, I have been attempting to port the Sam O'Neil code to Java (Android) for a project I am working on, but cannot for the life of me figure out what I am doing wrong. The port seems fine, ...
0
votes
0answers
254 views
Excel VBA/Macro: Creating a scatter plot with different series and sub-categories. [closed]
I have been cracking my head, trying to generate a scatter plot with the data below. After some search on google, I realised macro/vba might be able to do so. However, I have no background for ...
0
votes
1answer
60 views
select limits for region with most values in scatter plot
Say if I have a scatter plot:
dat = [1+(5-1).*rand(1000,1);89;92];
dat2 = dat+0.2;
scatter(dat,dat2);
As you can see from the graph there are two points that are much larger than the remainder of ...
5
votes
2answers
403 views
How do I create a scatter plot with graduated marker colours in MATLAB?
I would like to plot a simple scatter graph in MATLAB, with marker colours varying from one end of the spectrum to the other (e.g. red, orange, yellow....blue, purple).
My data compares the amount of ...
-2
votes
1answer
154 views
plot least squared line in a scatter plot
Having created a scatter plot with pandas. I don't know how to create the regresion line that would be the least squared from the points.
looking for examples in http://matplotlib.org i haven't found ...
1
vote
0answers
137 views
How to connect two points in Google Chart Tools - Scatter Chart
I've got problem which I cannot resolve myself.
I use Google Chart Tools to draw simple graph with some missing data. Below is sample code:
<html>
<head>
<script ...
0
votes
0answers
16 views
Get line plot to skip a segment?
This may not be possible, but...
I want to plot 3 small lines radiating from a center, but using raw data in the plot series instead of data from cells, like this:
...
0
votes
1answer
139 views
Scatter a vector into a variable MPI
I'm trying to send from process with rank = 0 to all other process (1,2,3,4) a value from the vector n_pointsBuffer. The problem is that just process 0 gets its value but the others don't. Can anyone ...
3
votes
0answers
204 views
GNU linker script - split code in two memory regions
I am trying to create a liker script that splits the code into two memory regions for the code and a separate for the BSS.
The two code sections are to linked together but to be loaded separatly
What ...
-1
votes
2answers
115 views
limit the axes for plotting in Matlab [duplicate]
Possible Duplicate:
is it possible to select a particular region in a scatterplot
is it possible to reduce the datapoints from the input text file, so that those dont come in my ...
-1
votes
1answer
88 views
is it possible to select a particular region in a scatterplot
I am basically plotting several million data points with help of scatterplot. here I am doing
scatter(x(1:end-1), y(1:end-1),5, z)
Now is possible to select a particular area in the plot...and find ...
0
votes
0answers
23 views
Windows drivers: Scatter gather
WSARecv vs readfilescatter
WSASend Vs WriteFileGather
WHich of these 2 functions are better for implementing scatter gather on WIndows?
1
vote
0answers
265 views
Mpi Scatter dynamical allocated 2d array(pgm file image)
I have implemented a 2d array Mpi scatter which works well. I mean that the master processor can scatter 2d parts of the initial big array. The problem is when I use as input the 2d image file ...
3
votes
1answer
333 views
Using dynamic named range in VBA for scatter chart labeling
I'm trying to make a macro that will change the data labels on a scatter chart to the title of each point. Eg:
In this case I would like the data labels to show the movie title. The code I used ...
0
votes
1answer
30 views
Windows drivers: Scatter gather win32
Is it possible to do scatter gather via DeviceIOControl function?
Writing a scatter gather function to read and write.
Any idea if ReadFile Scatter and WriteFilescatter work?
0
votes
1answer
240 views
Alternative to scatterplot plotting in matlab
I am plotting a map between x,y and density. x and y are distances. Is there any other method apart from scatterplot to plot it. I want the density to be shown in colorbar. I have been doing the ...
9
votes
3answers
1k views
matlab: scatter plots with high number of datapoints
I'm trying to plot scatter, something like:
scatter(coor(:, 2), coor(:, 3), 1, coor(:, 4));
The problem is, that I have quite big number of coordinates to plot (~100 000). Its taking long time to ...
1
vote
1answer
118 views
Selective plotting of data and colorbar division
I want to plot only data that is greater than or equal to 6 and less than or equal to 12 on the colorbar. I have written the following. But am unable to include other restrictions:
...








