Replies: 2 comments 3 replies
-
Could you share a valid and reproducible Quarto document? And remove all unnecessary things. 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.
1 reply
-
The quarto document pulls files from a server that will be inaccessible to others, but are needed for the plots themselves, so I'm not sure how to do that. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
When I plot the following histogram in Jupyter Notebook, it simply plots the histogram, but when rendered in Quarto, the output includes the corresponding array (as seen in the attached image). Since I suspect this may be a YAML related issue, I will attach the YAML beneath as well. I have tried adjusting execute options to no success
Histogram Code:
Beta Was this translation helpful? Give feedback.
All reactions