Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. ggplot(sitios, aes(x = as.factor(x), y = (y))) +
  2. geom_boxplot(lwd = 0.5, color="black", outlier.colour = "blue",
  3. outlier.shape = 2) +
  4. scale_x_discrete(name = NULL, limits=c("a", "b", "c", "d")) +
  5. theme(axis.text.x = element_text(size = 20, vjust = 1)) +
  6. scale_y_continuous(name = "y", limits = c(3,5)) +
  7. stat_summary(fun.y = mean, geom = "point", size = 2.5, shape = 1) +
  8. theme_classic()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement