Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. ---
  2. title: "label_example"
  3. output: pdf_document
  4. ---
  5.  
  6. ```{r setup, include=FALSE}
  7. knitr::opts_chunk$set(fig.width=12
  8. , fig.height=5.5
  9. , echo=FALSE
  10. , warning=FALSE
  11. , message=FALSE
  12. , results='asis')
  13. ```
  14.  
  15. ## R Markdown
  16.  
  17.  
  18. ```{r cars}
  19. message("I am Here")
  20. summary(cars)
  21. ```
  22.  
  23. ## Including Plots
  24.  
  25. You can also embed plots, for example:
  26.  
  27. ```{r pressure, echo=FALSE}
  28. plot(pressure)
  29. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement