-
DescriptionFor the individual ---
title: "Reproducible Quarto Document"
format: html
---
```{r}
A_function_written_in_dotR_file(cars)
```
The end. I got this error message when trying to render the project:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Could you edit your post with both a question in the title and in the body? Also, could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
-
Why don't you use |
Beta Was this translation helpful? Give feedback.
Why don't you use
source()
?