```{python}
1 + 1
```
2
There are a wide variety of options available for customizing output from executed code. All of these options can be specified either globally (in the document front-matter) or per code-block. For example, here’s a modification of the Python example to specify that we don’t want to “echo” the code into the output document:
Note that we can override this option on a per code-block basis. For example:
Code block options are included in a special comment at the top of the block (lines at the top prefaced with #|
are considered options).
Options available for customizing output include:
Option | Description |
---|---|
eval |
Evaluate the code chunk (if false , just echos the code into the output). |
echo |
Include the source code in output |
output |
Include the results of executing the code in the output (true , false , or asis to indicate that the output is raw markdown and should not have any of Quarto’s standard enclosing markdown). |
warning |
Include warnings in the output. |
error |
Include errors in the output (note that this implies that errors executing code will not halt processing of the document). |
include |
Catch all for preventing any output (code or results) from being included (e.g. include: false suppresses all output from the code block). |
Here’s a Knitr example with some of these additional options included:
---
title: "Knitr Document"
execute:
echo: false
---
```{r}
#| warning: false
library(ggplot2)
ggplot(airquality, aes(Temp, Ozone)) +
geom_point() +
geom_smooth(method = "loess", se = FALSE)
```
```{r}
summary(airquality)
```
When using the Knitr engine, you can also use any of the available native options (e.g. collapse
, tidy
, comment
, etc.). See the Knitr options documentation for additional details. You can include these native options in option comment blocks as shown above, or on the same line as the {r}
as shown in the Knitr documentation.
The Knitr engine can also conditionally evaluate a code chunk using objects or expressions. See Using R: Knitr Options.
There are a number of ways to control the default width and height of figures generated from code. First, it’s important to know that Quarto sets a default width and height for figures appropriate to the target output format. Here are the defaults (expressed in inches):
Format | Default |
---|---|
Default | 7 x 5 |
HTML Slides | 9.5 x 6.5 |
HTML Slides (reveal.js) | 9 x 5 |
5.5 x 3.5 | |
PDF Slides (Beamer) | 10 x 7 |
PowerPoint | 7.5 x 5.5 |
MS Word, ODT, RTF | 5 x 4 |
EPUB | 5 x 4 |
Hugo | 8 x 5 |
These defaults were chosen to provide attractive well proportioned figures, but feel free to experiment to see whether you prefer another default size. You can change the default sizes using the fig-width
and fig-height
options. For example:
---
title: "My Document"
format:
html:
fig-width: 8
fig-height: 6
pdf:
fig-width: 7
fig-height: 5
---
How do these sizes make their way into the engine-level defaults for generating figures? This differs by engine:
For the Knitr engine, these values become the default values for the fig.width
and fig.height
chunk options. You can override these default values via chunk level options.
For Python, these values are used to set the Matplotlib figure.figsize
rcParam (you can of course manually override these defaults for any given plot).
For Julia, these values are used to initialize the default figure size for the Plots.jl GR backend.
If you are using another graphics library with Jupyter and want to utilize these values, you can read them from QUARTO_FIG_WIDTH
and QUARTO_FIG_HEIGHT
environment variables.
When using the Knitr engine, fig-width
and fig-height
are supported on a per-cell basis. But when using the Jupyter engine, these options only have an effect if specified at the document- or project-level metadata.
Jupyter, Knitr and OJS all support executing inline code within markdown (e.g. to allow narrative to automatically use the most up to date computations). See Inline Code for details.
The output: asis
option enables you to generate raw markdown output. When output: asis
is specified none of Quarto’s standard enclosing divs will be included. For example, here we specify output: asis
in order to generate a pair of headings:
Which generates the following output:
Note that we also include the echo: false
option to ensure that the code used to generate markdown isn’t included in the final output.
If we had not specified output: asis
the output, as seen in the intermediate markdown, would have included Quarto’s .cell-output
div:
For the Jupyter engine, you can also create raw markdown output using the functions in IPython.display
. For example:
If you are using the Knitr cell execution engine, you can specify default document-level Knitr chunk options in YAML. For example:
---
title: "My Document"
format: html
knitr:
opts_chunk:
collapse: true
comment: "#>"
R.options:
knitr.graphics.auto_pdf: true
---
You can additionally specify global Knitr options using opts_knit
.
The R.options
chunk option is a convenient way to define R options that are set temporarily via options()
before the code chunk execution, and immediately restored afterwards.
In the example above, we establish default Knitr chunk options for a single document. You can also add shared knitr
options to a project-wide _quarto.yml
file or a project-directory scoped _metadata.yml
file.
When multiple expressions are present in a code cell, by default, only the last top-level expression is captured in the rendered output. For example, consider the code cell:
When rendered to HTML the output generated is:
This behavior corresponds to the last_expr
setting for Jupyter shell interactivity.
You can control this behavior with the ipynb-shell-interactivity
option. For example, to capture all top-level expressions set it to all
:
Now the above code cell results in the output:
For dashboards the default setting of ipynb-shell-interactivity
is all.
On the way from markdown input to final output, there are some intermediate files that are created and automatically deleted at the end of rendering. You can use the following options to keep these intermediate files:
Option | Description |
---|---|
keep-md |
Keep the markdown file generated by executing code. |
keep-ipynb |
Keep the notebook file generated from executing code (applicable only to markdown input files) |
For example, here we specify that we want to keep the jupyter intermediate file after rendering:
If you are writing a tutorial or documentation on using Quarto code blocks, you’ll likely want to include the fenced code delimiter (e.g. ```{python}
) in your code output to emphasize that executable code requires that delimiter. You can do this using the echo: fenced
option. For example, the following code block:
Will be rendered as:
This is especially useful when you want to demonstrate the use of cell options. For example, here we demonstrate the use of the output
and code-overflow
options:
This code block appears in the rendered document as:
Note that all YAML options will be included in the fenced code output except for echo: fenced
(as that might be confusing to readers).
This behavior can also be specified at the document level if you want all of your executable code blocks to include the fenced delimiter and YAML options:
Often you’ll want to include a fenced code block purely as documentation (not executable). You can do this by using two curly braces around the language (e.g. python
, r
, etc.) rather than one. For example:
Will be output into the document as:
If you want to show an example with multiple code blocks and other markdown, just enclose the entire example in 4 backticks (e.g. ````
) and use the two curly brace syntax for code blocks within. For example:
Earlier we said that the engine used for computations was determined automatically. You may want to customize this—for example you may want to use the Jupyter R kernel rather than Knitr, or you may want to use Knitr with Python code (via reticulate).
Here are the basic rules for automatic binding:
Extension | Engine Binding |
---|---|
.qmd | Use Knitr engine if an Use Jupyter engine if any other executable code block (e.g. Use no engine if no executable code blocks are discovered. |
.ipynb | Jupyter engine |
.Rmd | Knitr engine |
.md | No engine (note that if an md document does contain executable code blocks then an error will occur) |
If your quarto document includes both {python}
and {r}
code blocks, then quarto will automatically use Knitr engine and reticulate R package to execute the python content.
For .qmd
files in particular, you can override the engine used via the engine
option. For example:
You can also specify that no execution engine should be used via engine: markdown
.
The presence of the knitr
or jupyter
option will also override the default engine:
Variations with additional engine-specific options also work to override the default engine:
Using shell commands (from Bash, Zsh, etc.) within Quarto computational documents differs by engine. If you are using the Jupyter engine you can use Jupyter shell magics. For example:
Note that !
preceding echo
is what enables a Python cell to be able to execute a shell command.
If you are using the Knitr engine you can use ```{bash}
cells, for example:
Note that the Knitr engine also supports ```{python}
cells, enabling the combination of R, Python, and Bash in the same document