Skip to content

Commit

Permalink
add rmd example
Browse files Browse the repository at this point in the history
  • Loading branch information
eeholmes committed Mar 4, 2023
1 parent fef2409 commit dcf9867
Show file tree
Hide file tree
Showing 4 changed files with 458 additions and 1 deletion.
28 changes: 28 additions & 0 deletions test-rmd.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: "test-rmd"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

## R Markdown

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>.

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:

```{r cars}
summary(cars)
```

## Including Plots

You can also embed plots, for example:

```{r pressure, echo=FALSE}
plot(pressure)
```

Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
429 changes: 429 additions & 0 deletions test-rmd.html

Large diffs are not rendered by default.

Binary file modified test.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion test.qmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Untitled"
format: pdf
format: html
---

## Quarto
Expand Down

0 comments on commit dcf9867

Please sign in to comment.