search for: theme_grey

Displaying 5 results from an estimated 5 matches for "theme_grey".

Did you mean: theme_gray
2019 Jul 23
2
[External] Re: quiet namespace load is noisy
Dear Russ, I had the same problem in my vignettes and setting both message and warning to FALSE seems to remove all unwanted output: ```{r message=FALSE, warning=FALSE} library("afex") library("ggplot2") library("cowplot") theme_set(theme_grey()) ``` Result: https://cran.r-project.org/web/packages/afex/vignettes/afex_plot_introduction.html Best, Henrik Am Di., 23. Juli 2019 um 14:52 Uhr schrieb Ben Bolker <bbolker at gmail.com>: > > Does setting message=FALSE in the chunk options of the vignette help? > > Or le...
2016 Apr 09
1
Run script R
.../pdfs")} pdf (output, width=5, height=3.5)gx = dev.off ()----------------------------------------------------------------------------------------------------------------------script( graph-style.R) : library(grid) theme_custom <- function (base_size = 10, base_family = "serif") {? theme_grey(base_size = base_size, base_family = base_family) %+replace%? ? theme(? ? ? line = ? ? ? ? ? ? ? element_line(colour = "black", size = 0.5, linetype = 1, lineend = "butt"),? ? ? rect = ? ? ? ? ? ? ? element_rect(fill = "white", colour = "black", size = 0.5, l...
2008 Nov 21
0
ggplot2 - version 0.8
...n no observations in a bin (was previously returning NA) * stat_quantreg: deal with yet another new output format from quantreg * stat_contour now has arguments to control the position of the contours, rather than relying on the z scale * theme: panel.empty setting removed as it is no longer used * theme_grey now aliased to theme_gray * theme_line: setting size works correctly * theme_rect, theme_segment: size now measured in mm, to be consistent with the rest of ggplot Regards, Hadley -- http://had.co.nz/ _______________________________________________ R-packages mailing list R-packages at r-proje...
2008 Nov 21
0
ggplot2 - version 0.8
...n no observations in a bin (was previously returning NA) * stat_quantreg: deal with yet another new output format from quantreg * stat_contour now has arguments to control the position of the contours, rather than relying on the z scale * theme: panel.empty setting removed as it is no longer used * theme_grey now aliased to theme_gray * theme_line: setting size works correctly * theme_rect, theme_segment: size now measured in mm, to be consistent with the rest of ggplot Regards, Hadley -- http://had.co.nz/ _______________________________________________ R-packages mailing list R-packages at r-proje...
2019 Jul 23
2
[External] Re: quiet namespace load is noisy
Lionel, Thanks for your response. I understand that method overriding can be a serious issue, but as you say, this is not something that the user can act upon. Yet the message lands at the user?s feet. In my case, the messages are cluttering my package vignettes, and may or may not represent what users see if they themselves run the vignette code, depending on what version of ggplot2, etc. they