Tagged Questions

13
votes
4answers
5k views

plotting two vectors of data on a GGPLOT2 scatter plot using R

I've been experimenting with both GGPLOT2 and lattice to graph panels of data. I'm having a little trouble wrapping my mind around the GGPLOT2 model. In particular, how do I plot a scatter plot with ...
12
votes
2answers
315 views

How to change points and add a regression to a cloudplot (using R)?

To make clear what I'm asking I've created an easy example. Step one is to create some data: gender <- factor(rep(c(1, 2), c(43, 41)), levels = c(1, 2),labels = c("male", "female")) numberofdrugs ...
7
votes
2answers
351 views

Relationship between plotting packages in R

I am just starting out with R, and beginning to start producing charts. I am aware that there are at least three different plotting packages, the standard one, ggplot2 and lattice. Are these ...
7
votes
2answers
902 views

R: What are the pros and cons of using Lattice versus ggplot2?

R: What are the pros and cons of using Lattice versus ggplot2?
6
votes
3answers
566 views

Reproducing lattice dendrogram graph with ggplot2

Is this possible to reproduce this lattice plot with ggplot2? library(latticeExtra) data(mtcars) x <- t(as.matrix(scale(mtcars))) dd.row <- as.dendrogram(hclust(dist(x))) row.ord <- ...
5
votes
2answers
109 views

Can one use polygon() or equivalent in lattice and ggplot2 plots?

Is it possible to annotate lattice (or ggplot2) figures with elements created with polygon() (or elements created with a similar function) from the graphics library? I'm not too familiar with either ...
4
votes
3answers
580 views

creating a more continuous color palette in r, ggplot2, lattice, or latticeExtra

Warning.... very novice question follows: I am trying to plot a fairly regular distribution of several thousand (X,Y) points each associated with a value, let's call Z, which varies very irregularly ...
4
votes
1answer
157 views

Can I use shingles from lattice in ggplot2 in R

It is possible to use the shingles to define specific ranges in ggplot2. As far as i understand shingles are a way to generate groups. Can we create such shingles and use them in ggplot2 facet_grid ...
3
votes
2answers
516 views

Utilise Surv object in ggplot or lattice

Anyone know how to take advantage of ggplot or lattice in doing survival analysis? It would be nice to do trellis/facet like survival graphs. So in the end I played around and sort of found a ...
2
votes
2answers
108 views

How to plot two lines by factor in a trellis graph?

Define: df <- data.frame( line1 = rep(seq(1,5,by=1),2), line2 = rep(seq(2,6,by=1),2), index = rep(seq(1,5,by=1),2), factor=rep(c("a","b"),each=5)) where line1 ...
1
vote
2answers
66 views

boxplot from row values in a dataframe

I got following data frame (simplified here): H2475 H2481 H2669 H2843 H2872 H2873 H2881 H2909 E1 24.470 26.481 15.120 18.490 16.189 11.422 14.886 18.512 E2 1.016 0.363 0.509 1.190 ...
1
vote
2answers
396 views

Combined Column Graph and Line Graph with Different Y Axis

Is it possible to create a combined column graph and line graph with different Y axis like you can in Excel? I want to automate the production of graphs where the line graph is the Good -Bad ratio and ...
1
vote
1answer
427 views

ggplot2 plotmatrix - changing text labels

I'm using the plotmatrix function in ggplot2 (ggplot2_0.8.8) and would like to override the column names displayed from my dataframe, e.g. plotmatrix(mtcars) + opts(strip.text.x = ...
1
vote
2answers
728 views

R: How to superimpose distribution curves on histograms using ggplot2 and lattice

Say, I am using facet_grid() in ggplot2 to obtain 2 histograms. Now I want to superimpose these histograms with Poisson curves (having different means for the 2 histogram plots/grids) and a second ...
1
vote
1answer
240 views

Dynamically generate an R lattice graph for many fields

I'm wondering if the following is possible. I have a survey with 100+ questions, all categorical, collected in 4 locations. All questions are labeled q1, q2 and so on. Let's say there are 100 for ...