Tagged Questions

GGplot2 is an actively maintained open-source chart-drawing library for R, written by Hadley Wickham, based upon the principles of "Grammar of Graphics". It partially replaces R's basic plot and the lattice package, while providing a clean, powerful, orthogonal and fun API.

learn more… | top users | synonyms

61
votes
15answers
4k views

Most underused data visualization [closed]

Histograms and scatterplots are great methods of visualizing data and the relationship between variables, but recently I have been wondering about what visualization techniques I am missing. What do ...
29
votes
2answers
8k views

Rotating and spacing axis labels in ggplot2

I have a plot where the x-axis is a factor whose labels are long. While probably not an ideal visualization, for now I'd like to simply rotate these labels to be vertical. I've figured this part out ...
28
votes
4answers
5k views

List of ggplot2 options?

After some research I found the way to prevent an uninformative legend from displaying ... + opts(legend.position = "none") Where can I find all the available "opts" for ggplot2?
23
votes
2answers
525 views

R + ggplot : Time series with events

I'm an R/ggplot newbie. I would like to create a geom_line plot of a continuous variable time series and then add a layer composed of events. The continuous variable and its timestamps is stored in ...
19
votes
2answers
366 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. ...
19
votes
1answer
631 views

Plotting a “sequence logo” using ggplot2?

Is it (reasonably) possible to plot a sequence logo plot using ggplot2? There is a package to do it which is based on "grid" called "seqLogo", but I was wondering if there could be a ggplot2 version ...
19
votes
4answers
863 views

Choosing between qplot() and ggplot() in ggplot2

I'm starting to use the great ggplot2 package for plotting in R, and one of the first things I ask myself before each plot is "well, will I use qplot or ggplot ?" I understand that qplot provides a ...
15
votes
3answers
752 views

Can R be used for GIS?

I'd like to create some GIS plots, and I'm wondering if R can be used for this. Here are some examples of plots I'd similar in concept to those I'd like to make: A temperature plot (or contour ...
14
votes
4answers
745 views

ggplot2 cheat sheet

There are lots of general R cheat sheets, but is there a cheat sheet for ggplot2?
14
votes
5answers
2k views

Side-by-side plots with ggplot2 in R

I would like to place two plots side by side using the ggplot2 package (ie. do the equivalent of par(mfrow=c(1,2))). For example, I would like to have the following two plots show side-by-side with ...
13
votes
3answers
340 views

Creating arbitrary panes in ggplot2

In base graphics I can create a 4 panel pane of graphics by doing the following: par(mfrow=c(2,2)) for (i in 1:4){ plot(density(rnorm(100))) } which results in I'd like to do the same sort of ...
13
votes
4answers
503 views

Extending ggplot2 properly?

Recently a few neat uses of ggplot2 have come up, and either partial or full solutions have been posted: ggheat Curly braces position_dynamic ggheat is notable because it rather breaks the ggplot ...
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
247 views

gradient breaks in a ggplot stat_bin2d plot

I have a 2d histogram created with stat_bin2d in the ggplot2 package. I'd like to control both the number of breaks in the color gradient, as well as where those breaks are located. I'm sure I'm just ...
12
votes
2answers
314 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 ...
12
votes
2answers
738 views

In ggplot2, what do the end of the boxplot lines represent?

I can't find a description of what the end points of the lines of a boxplot represent. For example, here are point values above and below where the lines end. (I realize that the top and bottom of ...
11
votes
6answers
664 views

Wondering how to output a chart I saw in the economist magazine

I saw this in a recent economist and I was wondering if anyone has code that would help replicate it using ggplot. Economist Chart Thanks!
10
votes
4answers
168 views

Bad idea? ggplotting an S3 class object

Many R objects have S3 methods to plot associated with them. For instance, every R regression tutorial contains something like this: dat <- data.frame(x=runif(10)) dat$y <- dat$x+runif(10) ...
10
votes
1answer
265 views

two column beamer/sweave slide with grid graphic

I'm trying to make a presentation on ggplot2 graphics using beamer + sweave. Some slides should have two columns; the left one for the code, the right one for the resulting graphic. Here's what I ...
10
votes
1answer
372 views

can I change the position of the strip label in ggplot from the top to the bottom?

I know this is not quite a data visualization issue, but the boss asked for it, so I need to figure out if it is possible. Thanks!
10
votes
1answer
3k views

How to nicely annotate a ggplot2 (manual)

Using ggplot I normally use geom_text and something like position=jitter to annotate my plots. However - for a nice plot I often finds it worthwhile to annotate manually. like below: data2 <- ...
10
votes
2answers
624 views

How to use an image as a point in ggplot?

Is there some way to use a specific small image as a point in a scatterplot with ggplot2. Ideally I will want to resize the images based on an variable. Here's an example: library(ggplot2) p <- ...
9
votes
2answers
421 views

How can I arrange an arbitrary number of ggplots using grid.arrange?

This is cross-posted on the ggplot2 google group My situation is that I'm working on a function that outputs an arbitrary number of plots (depending upon the input data supplied by the user). The ...
9
votes
14answers
941 views

What's the most useful ggplot2 tip or trick? [closed]

GGplot2 is a ubiquitous and powerful package, but many of the features and functions are not easy to find. I've found a couple of useful functions lately and I'd like to learn some more. It's possible ...
9
votes
2answers
1k views

ggplot legend issue w/ geom_point() and geom_text()

I am trying to use geom_point() to illustrate the count of my data. I would also like to annotate a few of the points in my graph with geom_text(). When I add the call to geom_text(), it appears that ...
9
votes
2answers
4k views

How to move or position a legend in ggplot2

I'm trying to create a ggplot2 plot with the legend beneath the plot. The ggplot2 book says on p 112 "The position and justification of legends are controlled by the theme setting legend.position, ...
8
votes
1answer
82 views

Can't set limits with coord_trans

I have some data that show a geometric relationship, but have outliers. For example: x = seq(0.1, 1, 0.01) dat = data.frame(x=x, y=10^x) dat[50:60, 2] = 10 qplot(x, y, data=dat, geom='line') I'd ...
8
votes
1answer
160 views

Transparency in boxplot legend keys using R and ggplot2

I am trying to make boxplots with a transparent fill and a corresponding legend. The plotting with alpha values works fine except that the legend keys do not have transparent fills. The following ...
8
votes
2answers
192 views

R ggplot2 ploting hourly data

I am trying to plot hourly meteorological data coming from a meteorological station with ggplot2 (it's my first time with ggplot). I've managed to plot daily data but having some problem when ...
8
votes
3answers
234 views

ggplot2: How can one copy a default theme and modify it?

I would like to create a new theme for ggplot that is based on theme_bw(). Than I would like to modify this new theme. Seems like an easy endeavor, but i've been working on it for more than one hour ...
8
votes
1answer
506 views

How to make graphics with transparent background in R using ggplot2?

I need to output ggplot2 graphics from R to PNG files with transparent background. Everything is ok with basic R graphics, but no transparency with ggplot2: d <- rnorm(100) #generating random data ...
8
votes
4answers
245 views

ggplot2: Why Does Semi-Transparency + pdflatex Cause Heavier-Than-Normal PDF Fonts?

ggplot2: Why Does Semi-Transparency + pdflatex Cause Heavier-Than-Normal PDF Fonts? I've run into a problem where pdf()ing in R and then pdflatex-ing a ggplot2 image causes all of the text on the ...
8
votes
1answer
136 views

position legend in first plot of facet

I would like to put my plot legend inside the plot, inside the first plot of a facet. Here is some example code: df=data.frame( x=runif(10), y=runif(10), facet=rep(c("a","b"),5), ...
8
votes
2answers
269 views

ggplot2: Curly braces on an axis?

In answering a recent visualization question I really needed braces to show a span on an axis, and I can't figure out how to do it in ggplot2. Here's the plot: Instead of a tick mark, I'd really ...
8
votes
1answer
393 views

ggplot: geom_text with dodged barplot

I tried to make the title self-explanatory, but here goes - data first: dtf <- structure(list(variable = structure(c(1L, 1L, 2L, 2L, 3L, 3L, 4L, 4L, 5L, 5L), .Label = c("vma", "vla", "ia", "fma", ...
8
votes
1answer
946 views

ggplot2: Overlay histogram with density curve

I am trying out ggplot2, and I run in a few problems. What I am trying to do is make a histogram of density values and overlay that with the curve of a density function (not the density estimate). ...
8
votes
1answer
895 views

Is there a way of manipulating ggplot scale breaks and labels?

ggplot generally does a good job of creating sensible breaks and labels in scales. However, I find that in plot with many facets and perhaps a formatter= statement, the labels tend to get too "dense" ...
8
votes
2answers
2k views

Order Bars in ggplot2 bar graph

I am trying to make a bar graph where the largest bar would be nearest to the y axis and the shortest bar would be furthest. So this is kind of like theTable I have Name Position 1 James ...
8
votes
3answers
816 views

sweave and ggplot2: no pdfs generated at all

i am trying create a sweave report that contains some graphics done with ggplot2. Though I am looking for some environment for the long run – I just use a simple .Rnw file here that only contains the ...
8
votes
5answers
2k views

How to better create stacked bar graphs with multiple variables from ggplot2?

I often have to make stacked barplots to compare variables, and because I do all my stats in R, I prefer to do all my graphics in R with ggplot2. I would like to learn how to do two things: First, I ...
8
votes
3answers
998 views

How can I superimpose modified loess lines on a ggplot2 qplot?

Background Right now, I'm creating a multiple-predictor linear model and generating diagnostic plots to assess regression assumptions. (It's for a multiple regression analysis stats class that I'm ...
7
votes
2answers
138 views

Emulate ggplot2 default color palette

What function can I use to emulate ggplot2's default color palette for a desired number of colors. For example, an input of 3 would produce a character vector of HEX colors with these colors:
7
votes
2answers
197 views

Can I get boxplot notches in ggplot2?

Yes, I know it's been around, I've also found Hadley's answer on google groups that there is no notches yet for ggplot2 boxplots. So my question is twofold: Has this changed (there's a native ...
7
votes
2answers
88 views

Do I need to reshape this wide data to effectively use ggplot2?

I have a data.frame that looks like Year Crustaceans Cod Tuna Herring Scorpion.fishes 1 1950 58578630 2716706 69690537 87161396 15250015 2 1951 59194582 3861166 ...
7
votes
4answers
224 views

Methods for doing heatmaps, level / contour plots, and hexagonal binning

The options for 2D plots of (x,y,z) in R are a bit numerous. However, grappling with the options is a bit of a challenge, especially in the case that all three are continuous. To clarify the ...
7
votes
1answer
129 views

Wrapping R's plot function (or ggplot2) to prevent plotting of large data sets

Rather than ask how to plot big data sets, I want to wrap plot so that code that produces a lot of plots doesn't get hammered when it is plotting a large object. How can I wrap plot with a very ...
7
votes
1answer
324 views

Combine continuous and discrete color scale in ggplot2?

I am a ggplot2 newbie. I am making a scatter plot where the points are colored based on a third continuous variable. However, for some of the points, that continuous variable has either an Inf value ...
7
votes
1answer
124 views

Changing legend position/direction using opts() has no effect

Creating the following plot results in the legend being placed vertically, on the right, rather than on the bottom horizontally as indicated in the call to opts(): dat <- data.frame(x = runif(10), ...
7
votes
2answers
140 views

can I separately control the x and y axes using ggplot?

Here is a ggplot from the ggplot wiki: baseplot <- ggplot(data.frame(x=1:10, y=10:1)) + geom_point(aes(x = x, y = y)) baseplot Question Is it possible to control these axes separately, ...
7
votes
2answers
204 views

Can GGPLOT make 2D summaries of data?

I wish to plot mean (or other function) of reaction time as a function of the location of the target in the x y plane. As test data: library(ggplot2) xs <- runif(100,-1,1) ys <- runif(100,-1,1) ...

1 2 3 4 5 18