Upload Website R: Vignettes and other documentation

Vignettes and other documentation

CHANGES IN R 3.4.0

Font face

There are only three fonts that are guaranteed to work everywhere: “sans” (the default), “serif”, or “mono”:


[Top]" of the morning

Vignettes from package 'ggplot2'

ggplot2::extending-ggplot2 Extending ggplot2 HTML source R code
ggplot2::ggplot2-specs Aesthetic specifications HTML source R code
theme_grey()$legend.key
#> List of 5
#>  $ fill         : chr "grey95"
#>  $ colour       : chr "white"
#>  $ size         : NULL
#>  $ linetype     : NULL
#>  $ inherit.blank: logi TRUE
#>  - attr(*, "class")= chr [1:2] "element_rect" "element"

Global elements

There are four elements that affect the global appearance of the plot:

df <- data.frame(x = 1:3, y = 1:3) base <- ggplot(df, aes(x, y)) + geom_point() + theme_minimal() base"even">
Element Theme function Description
line element_line() all line elements
rect element_rect() all rectangular elements
text element_text() all text
title element_text() all text in title elements (plot, axes & legend)