A scatter-plot is a type of data visualization, that reveals possible correlations between two variables. Data points are plotted on a two-dimensional plain using Cartesian Coordinates.

learn more… | top users | synonyms

0
votes
1answer
9 views

Highcharts - Grouped Scatter? (relative to Grouped Column)

I have a Grouped Column Series mapped, 3 columns in a group. I would like to add scatter points over each of the three columns within each group. Each scatter point would be centered over each column ...
0
votes
0answers
22 views

R scatterplot3d with error in plot.new() : figure margins too large

When running the codes as below, I got the margins too large error. x <- seq(min(lats),max(lats),length.out=100) y <- seq(min(lons),max(lons),length.out=100) xy <- merge(x,y) colnames(xy) ...
0
votes
0answers
9 views

Excel 2007 AppsPro XY Chart Labeller

I had been using XY Chart Labeller (by AppsPro) very smoothly in excel 2010 to attach lables to scatter charts. however, recently my machine changed and i now have excel 2007. For some reason, I am ...
0
votes
2answers
59 views

Filtering data using Checkboxes - D3

I am having hard time filtering using the checkboxes in the d3 graph. Here I have five checkboxes and I have to filter the particular data depends upon the checkboxes value. HTML <div ...
0
votes
0answers
9 views

Combining graphs and scatter plots

When creating graphs in ArcGIS 10, is it possible to combine line graphs and scatter plots? I know that "Add another series" on a graph is probably the way to do so. But, when I try to add a line to a ...
1
vote
0answers
41 views

Forcing R to create a scatterplot

I'm a novice R user and trying to create a scatterplot in a workspace in which I had already created some treemaps using the treemap package. When I enter: plot(XData, YData, type = "p", ...
0
votes
2answers
40 views

Display multiple points with exact same value in scatter HighCharts

i got a pool of data with exact same value in a scatter plot with HighCharts as in : http://jsfiddle.net/DvbHa/1/ i want to be able to display them in tooltip when i go over it to be able to click ...
0
votes
0answers
46 views

Matplotlib: scatter plot - symbol size based on pixel distance

Suppose I wanted to automatically select the size for square symbols in a scatter plot to make the borders align (a question like that has been asked). In my answer to that question, I suggested ...
1
vote
0answers
43 views

Spinning 3D Scatterplot in R - Crashes

I'm trying to create a 3D rotating scatterplot in R using the package Rcmdr: ParticlePos=read.table('FILE.dat',header=T,fill=T) library(Rcmdr) attach(mtcars) ...
2
votes
1answer
50 views

subsetting a df by group, looping through scatter plots

I'd like to automate generation of a few hundred scatter plots, but I'm not having much success with a compact way to handle the subsetting. The data frame has three fields of interest: site ...
1
vote
1answer
68 views

Choosing marker size in Matplotlib

I am doing a scatter plot with square marker in matplotlib like this one: . I want to achieve something like this: Which means I have to adjust the marker size and the figure size/ratio in such ...
0
votes
1answer
56 views

Core Plot 1.2 - CPTAxisLabelingPolicyEqualDivisions, axis sometimes not show last label

i've a strange problem with my coreplot graph. I have six y axis, and all of them have the policy "CPTAxisLabelingPolicyEqualDivisions". The graph can be scrolled and the labels on axis was correctly ...
0
votes
1answer
44 views

Function to make multiple scatterplots

I have this dataframe: set.seed(50) data <- data.frame(age=c(rep("juv", 10), rep("ad", 10)), sex=c(rep("m", 10), rep("f", 10)), size=c(rep("large", 10), ...
0
votes
1answer
36 views

Python scatter-plot: Conditions for marker styles?

I have a data set I wish to plot as scatter plot with matplotlib, and a vector the same size that categorizes and labels the data points (discretely, e.g. from 0 to 3). I want to use different markers ...
0
votes
1answer
21 views

Display just the first x value and change the scatter colour

In below code I'm attempting to change the colour of the scatter points to blue and limit the number of 'x' entries to 1 using xlim=c(0,1) & color='blue' Here is the code : xx = c('test1' , ...
0
votes
0answers
25 views

Scatter diagram not displaying correctly

Below is code I'm using to display a scatter diagram : xx = c('test1' , 'test2' , 'test3') yy = c(6 , 7 , 8) df <- data.frame(xx , yy) ggplot(df, aes(x=xx, y=yy)) + geom_point(alpha = .01) + ...
0
votes
2answers
33 views

Multiple plot by group by one function

I have the following data: Animal MY Age 1 17.03672067 1 1 17.00833641 2 1 16.97995215 3 1 16.95156788 4 1 16.92318362 5 1 16.88157748 6 2 16.83997133 2 2 16.79836519 3 2 ...
0
votes
0answers
52 views

add line segments showing the error between points of scatter plot and grid of surface3d

I'm very new to R, and I'm having trouble adding line segments showing the error between points of scatter plot and grid of surface3d. Surface Data x <- ...
0
votes
1answer
46 views

coreplot reload data not changing color

i have a scattergraph that successfully plots. i have a NSArray of custom objects each of which contains the name for annotation, x value, y value, symbol color, symbol shape. when i load the graph it ...
2
votes
3answers
46 views

Plot multiple individual by one function?

Could you please help me to solve this problem: I have a database like below: Animal Milk Age 1 11.96703591 1 1 13.41236333 2 1 14.85769075 3 1 16.30301817 4 2 17.74834559 1 2 ...
0
votes
1answer
60 views

Making a trajectory plot using R

I want to make a trajectory plot of my data set, like a scatterplot of X,Y but the data points are connected with a line using an arrow (where the arrow points to the next position) My data looks ...
2
votes
1answer
53 views

How do I manipulate multiple x-axes to correspond to each other, while on different scales?

I am trying to make a color magnitude diagram similar to: I have three arrays that contain the exact same number of values. x1 = B-V (-.5 to 2) x2 = Temperature. (30,000 to 3000) and needs to be ...
2
votes
1answer
58 views

matplotlib: update position of patches (or: set_xy for circles)

Inspired by this example I'm trying to write a little matplotlib program that allows the user to drag and drop datapoints in a scatter plot dynamically. In contrast to the example which uses a bar ...
1
vote
2answers
60 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 ...
1
vote
1answer
37 views

Animate new data insertion in core-plot (iOS)

I am trying to animate the "drawing" of new data using a CPTScatterPlot objects. I am now looking at the RealTime example that you can find here in the examples subdirectory. It is one of the example ...
0
votes
1answer
38 views

Matplotlib remove interpolation for missing data

I am plotting timeseries data using Matplotlib and some of the data is missing in the sequence. Matplotlib implicitly joins the last contiguous data point to the next one. But in case data is missing, ...
0
votes
2answers
71 views

Marking data labels on outliers in 3D scatter plot

I have a tab separated dataset that looks like this Labels t1 t2 t3 gene1 0.000000E+00 0.000000E+00 1.138501E-01 gene2 0.000000E+00 0.000000E+00 9.550272E-02 gene3 0.000000E+00 ...
1
vote
1answer
56 views

How to graph a tendency line in a discontinued regression in stata?

I need to graphicate a scatter plot of a time series variables that is static in every year (the plot is actually a bunch of vertical lines). And I need to create a tendency line that shows the ...
0
votes
1answer
52 views

r lm-like line in scatterplot3d

I want to add something of the form "abline" to a 3d Scatterplot in R. Here's my code so far: plot3d <- scatterplot3d( Table$Unemployment, Table$Foreigners, Table$Overall.crime, ...
2
votes
0answers
91 views

Scatter plot of images using imshow() in matlab [closed]

I'm trying to create a scatter plot in MATLAB where the samples are gray-scale images, like this one: http://isomap.stanford.edu/web2.jpg. I'm able do it by first calling scatter function to create ...
0
votes
1answer
16 views

Scatterplot Not Showing

I'm doing an application that requires core plot for drawing charts, I'm new to this library and I am finding it pretty hard to find good documentation or examples. I'm running into a problem where ...
0
votes
1answer
28 views

Several dataseries with hours+minutes on x-axis [closed]

I'm trying to make an Excel scatter plot with data such as this series 1: [time] [data] 10:05 2.1 10:30 1.8 11:15 3.1 series 2: [time] [data] 10:15 2.4 10:35 2.1 11:25 3.4 ...
1
vote
1answer
123 views

Tick properties for scatterplot matrices with Matplotlib

I am trying to plot a scatterplot matrix based on the code written by Joe Kington: Is there a function to make scatterplot matrices in matplotlib? Some people already helped me: Thank you again ...
0
votes
0answers
27 views

FussionCharts: line is not visible when rendering scatter chart

i am using scatter chart to draw a real values X-Y values but as in the picture maintained below the line is not shown , i think i am dong every thing in the right way but i don't know what is the ...
0
votes
1answer
51 views

Labels for scatterplot-matrices

I have been trying to plot a scatterplot matrix using the great example given by Joe Kington: Is there a function to make scatterplot matrices in matplotlib? However, I would like to add xlabels and ...
-3
votes
2answers
216 views

How to show error bars in scatter plots using R

SO i have data similar to this Value Number 3 1.5 6 1.67 9 1.7 12 1.6 15 1.7 18 1.8 21 1.9 24 1.98 27 1.98 30 1.8 33 1.84 36 1.5 39 1.7 42 1.9 45 1.9 48 2.0 51 1.21 54 1.4 57 ...
2
votes
1answer
51 views

Sage importing from csv and plotting numbers larger than 10

Okey, problem is simple: I try to draw a simple scatter plot: import csv a = csv.reader(open(DATA+'testi1.csv')) G = Graphics() for col in a: time = col[0] conversion = col[2] ...
0
votes
2answers
87 views

How to make a scatterplot in R with category-specific colored text labels?

I am still pretty new to R and plotting. I have several 2D matrices that are variations of matrix <- matrix(c(0,1,2,3,4,4,3,2,1,0), 5, 2) They are all associated with a single data frame of two ...
2
votes
0answers
41 views

Basic 2D color smoothing in R

I have the following data with the following colors x = c(2,3,4,2,3,7,8,7,5,6,2,3,6,8,9,10) y = c(5,6,5,6,5,11,12,11,16,17,12,12,10,5,6,5) col = sample(c("red","green"),16,rep=T) ...
2
votes
1answer
64 views

Finding linear fits in a scatter plot efficiently

i have a list of points n x 7 99.06 12 100.45 25 98.11 42 106.92 75 106.78 94 102.34 128 119.05 145 116.54 149 116.06 167 111.49 173 112.69 ...
1
vote
1answer
73 views

Scatter plot with conditional coloring of certain points in R

I'm plotting two pieces of data that I care about, medv and lstat. I have plotted these two already using boxplots, they are called lstatBox and medvBox. The reason I have done this is because I want ...
0
votes
1answer
49 views

R: splom()--> how to delete the default x-lab title?

whenever I do a scatterplot with three variables with the function "splom" in R, the graphic in the plot-window shows the plot but with a title "Scatter Plot Matrix" at the bottom. How can I delete ...
2
votes
1answer
292 views

scikit-learn howto plot kmean document clusters?

I want to plot this example in scatter plot : http://scikit-learn.org/dev/auto_examples/document_clustering.html#example-document-clustering-py I am sklearn and numpy newbie here , i want to get ...
0
votes
0answers
78 views

Generate a line plot connecting top points from a scatter plot (Manhattan plot) [duplicate]

I am trying to create a line plot connecting the top points of a Manhattan plot (showing only the 'skyline' of the manhattan plot). I think I can manually select the points to connect and specify them ...
1
vote
2answers
104 views

Two plots with same X and Y axis

The plot shown is produced by the following R code. png("test.png") plot(data[,4],data[,3],type='l',col="green") par(new=TRUE) plot(data[,4],data[,2],type='l',col="red") dev.off() The range of ...
1
vote
1answer
159 views

JfreeChart scatter plot click to popup information

Is it possible to add GUID to each point on scatter plot so when user will click the point I can handle the GUID and retrieve some information? Edited: add sample: package demo; import ...
0
votes
1answer
106 views

Drawing 3D points in Matlab and connect them in order via line

I have an array that contains 3D float points. Not only I want to depict them in a figure but also I want to connect them with lines. Example) lets say we have array called X: X=[0, 0, 0; 0.48, ...
0
votes
1answer
45 views

Scatter plot: How to get the name of the series into a function

So I would like to call the "name" in this set of data to use in a function in another part of the script. I'm able to call the ticker, x, info, and hover variables by using event.point.ticker, ...
0
votes
0answers
36 views

Drag on scatterplot and coordinates retrieval in chaco / traits

I have taken the file: https://github.com/enthought/chaco/tree/master/examples/demo/edit_line.py and attempted to modify it so that only one point is kept on the graph and that its coordinates get ...
0
votes
1answer
137 views

Highcharts - Scatter plot: How to send information from clicks to a function with information about the click as parameters

I have a highcharts scatter plot, and I would like to add some custom functionality. For each click of the items in the highcharts (clicking the filters, datapoint, and the close button), I want to ...

1 2 3 4 5 6