Replies: 1 comment 8 replies
-
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.
8 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
The rest of my document is rendering great, but I have one cell block that I just can't get to render properly. It uses a for loop to render 6 different plots, and I would like to display them across two rows instead of having all of them in a single column. The only column layout that has changed anything at all is using
column: margin
- that works as expected.I did see another post somewhere that stated using
plt.show()
instead ofdf.show()
fixed the issue for them. Trying a similar fix here, unfortunately, did not work. Happy to provide any more details if needed.Quarto version 1.3.450
Ubuntu 22.04.3 LTS
Beta Was this translation helpful? Give feedback.
All reactions