Tagged Questions
The scatter-plot tag has no wiki summary.
19
votes
2answers
371 views
Scatterplot with marginal histograms in ggplot2
Is there a way of creating scatterplots with marginal histograms just like in the sample below in ggplot2? In Matlab it is the scatterhist() function and there exist equivalents for R as well. ...
5
votes
1answer
211 views
Best way to draw scatter plot with lots of data points in C++ using OpenGL
I'm writing a program in C++ that acquires 4 dimensional points data over a UDP socket and then plots the data in 6 separate 2D scatter plots. For example if we name the dimensions: A,B,C,D the six 2d ...
5
votes
2answers
2k views
Correlation Scatter-matrix plot with different point size (in R)
I just came a cross this nice code that makes this scatter matrix plot:
And wanted to implement it to a likret scale variables (integers of 1 to 5) by making the dot's sizes/colors (in the lower ...
5
votes
2answers
2k views
Good Scatter-plot plugin for JQuery (sample pic included)?
I'm looking for a solid graphing plugin for JQuery that can give me an attractive scatterplot for use on my site. I really don't need a lot of fancy functionality -- just the ability to plot points on ...
5
votes
9answers
9k views
Scatter Plots in C++
What is the best way to graph scatter plots in C++?
Do you write data to a file and use another tool? Is there a library like matplotlib in Python?
4
votes
1answer
212 views
car::scatter3d in R - labeling axis better
I'm using scatter3d and the 3 axes just have two endpoint values. how can I get labels throughout the entire axis, just like the normal plot() function does?
4
votes
2answers
145 views
Plotting deviations from regression line
I want to plot a regression line with (a = 0 and b = 1) and add the individual point deviations from this along with identifying the data point with name.
set.seed(123)
namelab <- paste ("ET", ...
4
votes
3answers
2k views
MATLAB scatter3, plot3 speed discrepencies
This is about how MATLAB can take very different times to plot the same thing — and why.
I generate 10000 points in 3D space:
X = rand(10000, 1);
Y = rand(10000, 1);
Z = rand(10000, 1);
I then ...
4
votes
2answers
701 views
plotting points on top of image in R
These days I am extensively using R to scatter plots.
Most of the plotting is concerned with image processing,
Recently I was thinking of plotting the scatter plots over an image.
For example, I ...
3
votes
1answer
63 views
heatmap using scatter dataset python matplotlib
I am writing a script to make a heatmap for scatter data on two dimensionS. The following is a toy example of what I am trying to do:
import numpy as np
from matplotlib.pyplot import*
x = [1,2,3,4,5]
...
3
votes
3answers
78 views
How to define fixed aspect-ratio for scatter-plot
I am plotting correlation coefficients (values = 0.0:1.0) for two isotopes measured in each individual from two populations. I would like to have a fixed aspect-ratio for my scatter-plot so that the ...
3
votes
1answer
990 views
Common colorbar for scatter plots in Matlab with small numbers
I want to have each subplot share the same colorbar scale. I know caxis works for integers greater than 1, but there appears to be a problem using caxis with values such as 0.001.
x = 0:1:10;
y = ...
3
votes
1answer
896 views
Matplotlib 3D Scatter Plot with Colorbar
Borrowing from the example on the Matplotlib documentation page and slightly modifying the code,
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
def ...
3
votes
2answers
958 views
Any easy way to plot a 3d scatter in Python that I can rotate around?
Currently I'm using matplotlib to plot a 3d scatter and while it gets the job done, I can't seem to find a way to rotate it to see my data better.
Here's an example:
import pylab as p
import ...
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 ...
3
votes
2answers
4k views
Fixing color in scatter plots in matplotlib
I want to fix the color range on multiple scatter plots and add in a colorbar to each plot (which will be the same in each figure). Essentially, I'm fixing all aspects of the axes and colorspace etc. ...
3
votes
5answers
4k views
Scatter Plot 3D for Web Application
I am looking for a Scatter Plot 3D component for a Web application. Right now I am using JMathPlot (inside a Java Applet) to produce something like this:
JMathPlot is fine, but is missing some ...
3
votes
5answers
307 views
Comprehensive graphing and charting solutions…?
I have need to produce LINE, BAR, and PIE charts in Rails. I have found several that do all these. However the one caveat is that I can never find a solution that does all as well as XY-SCATTER. ...
3
votes
6answers
1k views
Are there any graph/plotting/anything-like-that libraries for Python 3.0?
As per the title. I am trying to create a simple scater plot, but haven't found any Python 3.0 libraries that can do it. Note, this isn't for a website, so the web ones are a bit useless.
2
votes
3answers
95 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
2answers
185 views
How to create a time scatterplot with R?
The data are a series of dates and times.
date time
2010-01-01 09:04:43
2010-01-01 10:53:59
2010-01-01 10:57:18
2010-01-01 10:59:30
2010-01-01 11:00:44
…
My goal was to represent a scatterplot with ...
2
votes
2answers
2k views
JFreeChart Scatter Plot Lines
I'm trying to create a graph with JFreeChart, however it doesn't get the lines right. Instead of connecting the points in the order I put them, it connects the points from in order of their x-values. ...
2
votes
2answers
511 views
PyQt4 Scatterplot with Clickable and Selectable Points
I'm trying to create a scatterplot with about 1000 data points in a way so that each data point can be selected by clicking on them using a mouse, which will result in bringing up a context menu which ...
2
votes
1answer
8k views
Line of best fit scatter plot
I'm trying to do a scatter plot with a line of best fit in matlab, I can get a scatter plot using either scatter(x1,x2) or scatterplot(x1,x2) but the basic fitting option is shadowed out and lsline ...
1
vote
1answer
36 views
Scatter plot of handwritten digits
I want to create a scatter plot of handwritten digits of 0 and 1 (http://yann.lecun.com/exdb/mnist/). I took 4 samples ie two 0's and two 1's.
Each handwritten digits are having pixel values having ...
1
vote
2answers
82 views
Scatter plot of 10k record extracted from database
I am trying to make a scatter plot in Python. I supposed it will be fairly simple but got stuck with understanding in scatterplot (x and y value) while plotting.
==My mission ==
I have database and ...
1
vote
1answer
70 views
How to add points to two plots parallelly ? (in R)
I am looking for ways to add points to three different plots in parallel.
I have three scatter plots named s3d1, s3d2 and s3d3 in a single window
layout(matrix(c(1,2,1,3),2, 2, byrow = TRUE))
...
1
vote
2answers
87 views
matplotlib 3D scatter plot colors of dots very light
I used the command below to create a 3D scatter plot:
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
sizeseq = 2
colorseq = "k"
fig = plt.figure(1, (5,5), dpi=300)
ax = ...
1
vote
1answer
99 views
How to color code scatter-plot of PCoA
So I am new to this. I need to run PCoA on the following data matrix. I am able to run my analyses using ADE4, labdsv, Ginko, Aabel softwares. Whats bothering me is how to color code the labels in the ...
1
vote
0answers
105 views
Plotting graph edge density with R
I'm plotting the vertex degree (# of incident edges) of the graph g.
deg <- degree(g, v=V(g), mode = c("in"), loops = TRUE)
histdata <- hist( deg, breaks=1000, plot=FALSE )
...
1
vote
1answer
167 views
Scatter plot with pareto frontier using gnuplot
I can currently use gnuplot to plot a scatter graph. But what I am unable to do is connect all the points on the graph which form the rightmost frontier(i.e these points do not have any points further ...
1
vote
2answers
189 views
What package is to be installed in R for scatter plots with logarithmic binning?
I am trying to produce some high density scatter plots with R. What package should be installed for this? Or is there any other way to obtain the plots.
1
vote
2answers
170 views
scatterplot instead of a lineplot while using the plotfile function of matplotlib
I know the general usage of plotfile:
import matplotlib.pyplot as plt
plt.plotfile(csvfile,sometuple)
But this produces a line plot by default. I want a scatterplot. Is there some special argument ...
1
vote
1answer
440 views
Octave(MATLAB), scatterplot legend and fill not working
I am using Octave, which free pseudo-MATLAB.
My problem is this: I want to fill the bubbles of my scatter plot, as well as place a legend. But I get errors when I try to use 'filled,' and no legend ...
1
vote
2answers
624 views
how do i create a scatter plot with 2 1-D arrays?
my only objective is to create a scatter plot with only x and y axes. the data source should be from a 1 dimensional array.
say i have these arrays:
x() as Object ' for x axis values
y() as Object ...
1
vote
2answers
427 views
Basic hexbin with R?
I have results from a survey. I am trying to create a graphic displaying the relationship of two variables: "Q1" and "Q9.1". "Q1" is the independent and "Q9.1" is the dependent. Both variables have ...
1
vote
1answer
579 views
Easiest way to plot values as symbols in scatter plot?
In an answer to an earlier question of mine regarding fixing the colorspace for scatter images of 4D data, Tom10 suggested plotting values as symbols in order to double-check my data. An excellent ...
1
vote
3answers
9k views
Matlab - plot multiple data sets on a scatter plot
Hey all,
I have 2 sets of data (Ax, Ay; Bx, By) - I'd like to plot both of these data sets on a scatter plot with different colors, but can't seem to get it to work because it seems scatter() does not ...
1
vote
2answers
735 views
How can a data ellipse be superimposed on a ggplot2 scatterplot?
I have an R function which produces 95% confidence ellipses for scatterplots. The output looks like this, having a default of 50 points for each ellipse (50 rows):
[,1] [,2]
[1,] ...
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
833 views
Java: Really simple scatter plot utility
I know there are many comparisons of java plotting libraries out there, but I'm not finding what I need. I just want a mind-numbingly simple toolkit that creates images of scatterplots from a set of ...
0
votes
0answers
10 views
How to create a Scatter Plot chart in SSRS 2008?
I am trying to create a scatter plot chart in SSRS 2008 (not 2008 R2). Is this possible? I want to map military time of day for each day that an event occurs. So my data looks like:
Hour of Day ...
0
votes
1answer
45 views
Web 3D Scatter Plot (XYZ / RGB) using CSS or Canvas
Well, I am trying to graph RGB values so that I can easily know what to put as the value of K for the Kmean value theorem.
But what I am trying to figure out is how I should graph my 3 dimensional ...
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
2answers
47 views
Use VTK to plot points of different colours
I would like to use Visualisation Toolkit to scatter plot points, each of which will have a different colour. I have used the advice given here to plot points in a gray colour, but am failing to ...
0
votes
1answer
46 views
How to change the values dynamically in ScatterPlot chart in iPhone Using CorePlot9?
I have downloaded CorePlot_0.9 from google and imported in my iPhone project. I want to draw line(ScatterPlot) in iphone app. I just reviewed and copy the code from 'CPTTestApp-iPhone' ...
0
votes
0answers
10 views
How to set desired Ranges of values for X,Y,Z in JMATH PLOT
I am using JMATH PLOT to plot 3D scatter plots.But the problem is, i am facing problems in scaling the X,Y and Z Axis like in the picture below.So can any one please help me how to do set ranges for ...
0
votes
1answer
35 views
Copying the image of a ScatterChart to system clipboard in JavaFX 2.0
I need to copy a ScatterChart in JavaFX 2.0 to the system clipboard. I'm not really sure how to copy the whole image of the ScatterChart with the potted points.
0
votes
0answers
32 views
Text Marker in Google Scatter Chart
I'm trying to add text markers to points in a Google Scatter Chart. As a simple example consider the following chart:
https://chart.googleapis.com/chart?cht=s&chs=500x400&chd=t:50|50
I want ...
0
votes
1answer
45 views
Why does scatterPlotGraph appear as the mirror of actual graph when using customized frame?
Heading
I am using CorePlot Library for drawing scatterPlot graph. When i use customized frame for creating CPTXYGraph and CPTGraphHostingView instance, graph appears as the mirrror image of the ...