library(flexdashboard)

Page 1

Monthly deaths from bronchitis, emphysema and asthma in the UK, 1974–1979 (Source: P. J. Diggle, 1990, Time Series: A Biostatistical Introduction. Oxford, table A.3)

Column {data-width=650, .tabset}

Chart A

library(ggplot2)
p1 <- ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point()
p1

Chart A2

library(ggplot2)
p1 <- ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point() + theme_bw()
p1

Column {data-width=350}

Chart B

A link to the original file.


Chart C

p2 <- ggplot(mtcars, aes(x=mpg)) + geom_histogram()
p2

Page 2

Column {data-width=650}

Chart A

DT::datatable(mtcars, options = list(
  bPaginate = FALSE
))

Column {data-width=350}

Text

some text here

A more extened quote so that users can understand something

Chart B

knitr::kable(mtcars)

Chart C




matthewcurrier/mattstemplates documentation built on July 8, 2021, 4:05 p.m.