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.
22
votes
3answers
10k 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 ...
19
votes
2answers
9k views
ggplot2: Adding Regression Line Equation and R2 on graph
I wonder how to add regression line equation and R^2 on the ggplot. My code is
library(ggplot2)
df <- data.frame(x = c(1:100))
df$y <- 2 + 3 * df$x + rnorm(100, sd = 40)
p <- ggplot(data = ...
9
votes
3answers
616 views
left align two graph edges (ggplot)
I'm using ggplot and have two graphs that I want to display on top of each other. I used grid.arrange from gridExtra to stack them. The problem is I want the left edges of the graphs to align as ...
12
votes
1answer
1k views
ggplot's qplot does not execute on sourcing
Let's assume I have 2 source files, the first one named example1.r and the second one example2.r (given below).
example1.r
plot(1:10,1:10)
example2.r
qplot(1:10,1:10)
When I source example1.r, ...
16
votes
2answers
761 views
Combine base and ggplot graphics in R figure window
I would like to generate a figure that has a combination of base and ggplot graphics. The following code shows my figure using the base plotting functions of R:
t <- c(1:(24*14))
P <- 24
A ...
10
votes
1answer
955 views
Generate multiple graphics from within an R function
I'd like to spawn several graphics windows from within a function in R using ggplot graphics...
testf <- function(a, b) {
devAskNewPage(TRUE)
qplot(a, b);
# grid.newpage(recording = TRUE)
...
49
votes
7answers
13k 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?
241
votes
6answers
21k views
How can we make xkcd style graphs in R?
Apparently, folk have figured out how to make xkcd style graphs in Mathematica and in LaTeX. Can we do it in R? Ggplot2-ers? A geom_xkcd and/or theme_xkcd?
I guess in base graphics, par(xkcd=TRUE)? ...
17
votes
2answers
1k 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 <- ...
11
votes
1answer
5k views
How to use Greek symbols in ggplot2?
My categories need to be named with Greek letters. I am using ggplot2, and it works beautifully with the data. Unfortunately I cannot figure out how to put those greek symbols on the x axis (at the ...
6
votes
1answer
5k views
Showing data values on stacked bar chart in ggplot2
I'd like to show data values on stacked bar chart in ggplot2. Here is my attempted code
Year <- c(rep(c("2006-07", "2007-08", "2008-09", "2009-10"), each = 4))
Category <- c(rep(c("A", ...
9
votes
2answers
2k views
In R,how do I change the color value of just one value in ggplot2's scale_fill_brewer?
I have a R dataframe (df) which I am plotting as a bar graph in ggplot2, and coloring based on a column in the dataframe (df$type). Right now, I am using the default coloring pattern ...
7
votes
1answer
3k views
How to change the order of facet labels in ggplot (custom facet wrap labels)
Hi I plotted a facet plot using ggplot in R and here is the plot
The problem I have is, The facets(labels) are sorted alphabetically (Ex: E1, E10, E11,E13, E2, E3, I1, I10, I2) but I need them to ...
14
votes
2answers
7k views
ggplot: showing % instead of counts in charts of categorical variables
I'm plotting a categorical variable and instead of showing the counts for each category value,
I'm looking for a way to get ggplot to display the percentage of values in that category. Of course, it ...
13
votes
2answers
938 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 ...
9
votes
1answer
473 views
add “floating” axis labels in facet_wrap plot
I have the same problem as this user - I have a 'jagged' faceted plot, in which the bottom row has fewer panels than the other rows, and I would like to have x-axis ticks on the bottom of each column. ...
4
votes
2answers
616 views
Plot dates on the x axis and time on the y axis with ggplot2
I have read in a series of 37 dates and times that an event happened. It is now sitting as a POSIXlt object. I want a graphic representation of the times that the events happened on each day. So the x ...
3
votes
1answer
1k views
geom_boxplot with precomputed values
In the past, I have been able to create boxplots using ggplot2 by providing the lower whisker, lower quantile, median, upper quantile, and upper whisker along with x-axis labels. For example:
DF ...
73
votes
2answers
25k 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 ...
22
votes
2answers
12k 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 <- ...
26
votes
2answers
6k 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 ...
13
votes
2answers
3k views
Understanding dates and plotting a histogram with ggplot2 in R
Main Question
I'm having issues with understanding why the handling of dates, labels and breaks is not working as I would have expected in R when trying to make a histogram with ggplot2.
I'm looking ...
9
votes
2answers
2k views
ggplot map with l
I want to plot a world map using ggplot2 (v.9) which combines two pieces if information. The following example illustrates:
library(rgdal)
library(ggplot2)
library(maptools)
# Data from ...
22
votes
2answers
3k 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 ...
15
votes
2answers
2k 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:
10
votes
1answer
1k views
Plotting interpolated data on map
I have survey data of species richness that was taken at various sites in the Chesapeake Bay, USA, and I would like to graphically present the data as a "heat map."
I have a dataframe of lat/long ...
10
votes
2answers
9k views
multiple graphs in one canvas using ggplot2
I am trying to merge two ggplot2 plots into one based on this table:
Type RatingA RatingB
1 One 3 36
2 Two 5 53
3 One 5 57
4 One 7 74
5 Three ...
9
votes
1answer
4k views
Creating a facet_wrap plot with ggplot2 with different annotations in each plot
I am using ggplot2 to explore the result of some testing on an agent-based model. The model can end in one of three rounds per realization, and as such I am interested in how player utilities differ ...
6
votes
2answers
2k views
using grid and ggplot2 to create join plots using R
I would like to know what can I do to fix a grid of plots. The plots are arranged in an array so that all the plots in a row have the same Y axis variable and all the plots in a column have the same X ...
10
votes
3answers
708 views
How to draw lines outside of plot area in ggplot2?
I created this plot with ggplot2:
The outside lines need to correspond to the Y scale, (i.e the Y position of the lines for Text1 should be 100 and 85). The only way I can do it by drawing a blank ...
6
votes
2answers
2k 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,] ...
12
votes
2answers
8k views
How to use ggplot2 make plot with 2 y axes, one y axis on the left, and another y axis on the right?
I need to plot a bar chart showing counts and a line chart showing rate all in one chart, I can do both of them separately, but when I put them together, I scale of the first layer (i.e. the ...
11
votes
1answer
1k views
Annotate values above bars (ggplot faceted)
One of my favorite tricks in base graphics is a pickup from Bill Dunlap. Being able to place numeric values (or any values) above bars in a bar plot (I don't use it but once in a while but love it).
...
3
votes
2answers
649 views
Average values of a point dataset to a grid dataset
I am relatively new to ggplot, so please forgive me if some of my problems are really simple or not solvable at all.
What I am trying to do is generate a "Heat Map" of a country where the filling of ...
10
votes
2answers
4k 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
4answers
961 views
Improve centering county names ggplot & maps
Early I posted a question about plotting county names on a map using ggplot and maps found HERE. My first approach was to take the means of all the lat and long coordinates per county as seen here:
...
6
votes
3answers
5k views
how to change the order of a discrete x scale in ggplot?
I am making a dodged bar chart using ggplot with discrete x scale, the x axis are now arranged in alphabetical order, but I need to rearrange it so that it is ordered by the value of the y-axis (i.e., ...
4
votes
1answer
676 views
Alignment of numbers on the individual bars with ggplot2
I want to show numbers on the individuals bars in the following graph.
df <- structure(list(A = structure(c(1L, 1L, 1L, 2L, 2L, 2L, 3L, 3L,
3L), .Label = c("0-50,000", "50,001-250,000", ...
6
votes
4answers
2k views
Using ggplot2, can I insert a break in the axis?
I want to make a bar plot where one of the values is much bigger than all other values. Is there a way of having a discontinuous y-axis? My data is as follows:
df <- data.frame(a = c(1,2,3,500), b ...
6
votes
2answers
4k views
R + ggplot: plotting over multiple pages
I'm trying to write a function that plots a ggplot facet_wrap plot over multiple pages. It's just a hack, as this feature seems to be on the ggplot2 feature to-do list. I do some small calculations to ...
2
votes
1answer
2k views
ordered factors in ggplot2 bar chart
I have a data frame with (to simplify) judges, movies, and ratings (ratings are on a 1 star to 5 star scale):
d = data.frame(judge=c("alice","bob","alice"), movie=c("toy story", "inception", ...
2
votes
2answers
2k views
Can't print to pdf ggplot charts [duplicate]
Possible Duplicate:
Generate multiple graphics from within an R function
Very strange thing happening to me: the following code fails to print to pdf device:
outnames <- c("1.pdf", ...
2
votes
1answer
864 views
Passing variable with line types to ggplot linetype
I am new to ggplot so bear with me. I am charting out growth projections for 35 small-area geographies which is an unhealthy amount for one plot even with use of the fantastic directlabels library. ...
1
vote
1answer
4k views
Making a stacked area plot using ggplot2
I'm using the following data structure to try and make a stacked area chart:
df <- data.frame(PopDen = c( 0.002279892, 0.002885407, 0.004291351, 0.002457731, 0.006631572, 0.007578882, 0.004465446, ...
25
votes
3answers
15k views
Plotting two variables as lines using ggplot2
A very newbish question, but say I have data like this:
test_data <- data.frame(
var0 = 100 + c(0, cumsum(runif(49, -20, 20))),
var1 = 150 + c(0, cumsum(runif(49, -10, 10))),
date = ...
30
votes
3answers
3k 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. ...
20
votes
1answer
2k views
How can I produce plots like this?
I have come across this kind of a plot that performs hierarchical clustering over a given set of timeseries data. Can someone tell me how to draw such plots?
I am open to implementations in R or ...
21
votes
4answers
2k views
ggplot2: Multiple color scales or shift colors systematically on different layers?
When I make box plots, I like to also show the raw data in the background, like this:
library(ggplot2)
library(RColorBrewer)
cols = brewer.pal(9, 'Set1')
n=10000
dat = data.frame(value=rnorm(n, ...
21
votes
2answers
4k views
What do hjust and vjust do when making a plot using ggplot?
Every time I make a plot using ggplot, I spend a little while trying different values for hjust and vjust in a line like
+ opts(axis.text.x = theme_text(hjust = 0.5))
to get the axis labels to ...
7
votes
7answers
4k views
Creating a Pareto Chart with ggplot2 and R
I have been struggling with how to make a Pareto Chart in R using the ggplot2 package. In many cases when making a bar chart or histogram we want items sorted by the X axis. In a Pareto Chart we want ...
