Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

49 lines
1.3KB

  1. ---
  2. title: "Title"
  3. subtitle: "A minimal Bulma RMarkdown Template"
  4. author:
  5. - name: First Author
  6. url: https://rstudio.com
  7. extra:
  8. - "First Affiliation"
  9. - "@tweeter345"
  10. - name: Second Author
  11. url: https://duckduckgo.com
  12. extra:
  13. - "Second Affiliation"
  14. - "Very Cool Guy"
  15. date: '`r strftime(Sys.time(), "%F %T")`'
  16. header-links:
  17. - name: Github
  18. url: https://github.com/gerkelab
  19. - name: Home
  20. url: https://gerkelab.com
  21. bulma:
  22. hero: ["info", "bold"]
  23. output: bulmaRmd::bulma_document
  24. ---
  25. ```{r setup, include=FALSE}
  26. knitr::opts_chunk$set(echo = TRUE)
  27. ```
  28. ## R Markdown
  29. This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
  30. When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
  31. ```{r cars}
  32. summary(cars)
  33. ```
  34. ## Including Plots
  35. You can also embed plots, for example:
  36. ```{r pressure, echo=FALSE}
  37. plot(pressure)
  38. ```
  39. Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.