Tagged Questions

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 ...
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
991 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
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 ...
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
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 ) ...
0
votes
1answer
96 views

Displaying 3-D scatter plot w/ Color Dependent on Data

I have a large set of data that I've collected that I'd like to display in a 3-D scatter plot. The data is contained in a text file. The data is organized like so 1 1 1 10.8 2 1 1 3.4 4 1 1 6.1 8 1 ...
0
votes
2answers
241 views

How can I chart 3d scatter graphs in C++?

What is the best way to chart a 3D scatter graph in C++? Or maybe it's easier to use an external programs. Can you recommend my anything?