knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Vignettes are long form documentation commonly included in packages. Because they are part of the distribution of the package, they need to be as compact as possible. The html_vignette output type provides a custom style sheet (and tweaks some options) to ensure that the resulting html is as small as possible. The html_vignette format:

Vignette Info

Note the various macros within the vignette section of the metadata block above. These are required in order to instruct R how to build the vignette. Note that you should change the title field and the \VignetteIndexEntry to match the title of your vignette.

Styles

Using example.

Examples

gp2007<-read.table(url("http://www.stat.umn.edu/geyer/3701/data/q1p4.txt"),header = TRUE)
ggplot2::ggplot(gp2007)+ggplot2::aes(x=x, y=p)+ggplot2::geom_point()
ggplot2::ggplot(gp2007)+ggplot2::aes(x=x, y=p)+ggplot2::geom_line()
ggplot2::ggplot(gp2007)+ggplot2::aes(x=x, y=p)+ggplot2::geom_area()


Xinyu-Jiang/XinyuJiangTools documentation built on May 25, 2019, 2:23 p.m.