Tagged Questions

19
votes
2answers
373 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
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
1answer
214 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
2answers
703 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
3answers
80 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 ...
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 ...
1
vote
1answer
71 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
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
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
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
2answers
737 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,] ...
0
votes
0answers
150 views

multiple scatter plots in single Pdf in R

I have a function which takes a tab delimited file as an input and creates scatter plot for the values(one scatter plot per file) in the tab delimited file.I need a function which can print scatter ...
0
votes
1answer
470 views

Plotting scatterplots with pairs in R, in log scale with data containing zeros

I am trying to plot some pairs of scatterplots using "pairs". My dataframe look like : >e X Y Z 0 0 0 2 3 4 0 3 4 3 3 3 A completely standard dataframe here. I use this ...
0
votes
2answers
209 views

How to draw only a range of values in geom_point from the ggplot2 package?

Hello All, I have the following molten data: X variable value 1 StationA SAR11.cluster 0.001309292 2 StationB SAR11.cluster 0.002712237 3 StationC SAR11.cluster 0.002362708 4 StationD ...