Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ggplot2 legend for stat_summary

Tags:

r

ggplot2

How can I create a legend informing that the red cross is the mean?

ggplot(results, aes(x=factor, y=proportionPositive)) +
geom_boxplot() +
stat_summary(fun.data = "mean_cl_normal", colour = "red", shape=4)

enter image description here

like image 480
Pengin Avatar asked Mar 03 '11 09:03

Pengin


1 Answers

Here is one way of doing it:

  1. Map an aesthetic to a shape, i.e. aes(shape="mean")
  2. Create a manual shape scale, i.e. scale_shape_manual()
# Create dummy data
results <- data.frame(
  factor=factor(rep(1:10, 100)), 
  proportionPositive=rnorm(1000))

# Plot results
ggplot(results, aes(x=factor, y=proportionPositive)) +
      geom_boxplot() +
      stat_summary(fun.data = "mean_cl_normal", 
              aes(shape="mean"), 
              colour = "red",
              geom="point") +
      scale_shape_manual("", values=c("mean"="x"))

enter image description here

like image 135
Andrie Avatar answered Sep 17 '22 08:09

Andrie