You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ThisemulatesQuarto's approach to executing the code in your document: starting a clean session, and executing code cells from top to bottom.
110
+
ThisemulatesQuarto's approach to executing the code in your document: starting a clean session and executing code cells from top to bottom.
111
111
112
112
:::
113
113
@@ -154,7 +154,6 @@ Try this with the cell labelled `scatterplot`.
154
154
``` r
155
155
#| label: scatterplot
156
156
#| echo: true
157
-
158
157
ggplot(mpg, aes(x = hwy, y = cty, color = cyl)) +
159
158
geom_point(alpha = 0.5, size = 2) +
160
159
scale_color_viridis_c() +
@@ -295,11 +294,11 @@ You can read more about how Quarto chooses an engine in [Engine Binding](/docs/c
295
294
296
295
## R
297
296
298
-
If you completed this tutorial with R, you'llhavebeenusingthe`knitr`engine.
297
+
If you'vebeenworkingthroughthistutorialwithR, youhavebeenusingthe`knitr`engine.
299
298
See [KnitrCellOptions](/docs/reference/cells/cells-knitr.qmd) documentationforthecompletelistofavailablecodecelloptions.
300
299
301
300
## Python
302
-
IfyoucompletedthistutorialwithPython, you'll have been using the `jupyter` engine.
301
+
Ifyou've been working through this tutorial with Python, you have been using the `jupyter` engine.
303
302
See the [Jupyter Cell Options](/docs/reference/cells/cells-jupyter.qmd) documentation for the complete list of available code cell options.
304
303
305
304
:::
@@ -486,7 +485,7 @@ An alternative is to use inline code, which you'll cover next.
486
485
487
486
Code cells using the `` ```{language} `` syntax are sometimes called *executable* code cells because they will be executed by the computational engine (e.g. `knitr` or `jupyter`).
488
487
489
-
If you want to show code without it being processed by the computational engine use a code block:
488
+
If you want to show code without it being processed by the computational engine, use a code block:
490
489
491
490
::: {.panel-tabset group="language"}
492
491
@@ -508,7 +507,7 @@ If you want to show code without it being processed by the computational engine
508
507
509
508
:::
510
509
511
-
You can read more, and see some syntax alternatives, at [Markdown Basics: Source Code](/docs/authoring/markdown-basics.qmd#source-code)
510
+
You can read more and see some syntax alternatives at [Markdown Basics: Source Code](/docs/authoring/markdown-basics.qmd#source-code).
512
511
513
512
:::
514
513
@@ -518,7 +517,7 @@ You can read more, and see some syntax alternatives, at [Markdown Basics: Source
518
517
519
518
## R
520
519
521
-
To include executable expressions within markdown text, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``, read more in [Inline Code](/docs/computations/inline-code.qmd)].
520
+
To include executable expressions within markdown text, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``, read more in [Inline Code](/docs/computations/inline-code.qmd).].
522
521
523
522
## Python
524
523
@@ -557,7 +556,7 @@ You could now delete the code cell that did the same computation, since the inli
557
556
If the expression you want to inline is more complex, involving many functions or a pipeline, we recommend including it in a code cell (with `echo: false`) and assigning the result to an object.
558
557
Then, you can call that object in your inline code.
559
558
560
-
For additional details on inline code expressions, visit the [Inline Code](/docs/computations/inline-code.qmd)page.
559
+
For additional details on inline code expressions, visit the [Inline Code](/docs/computations/inline-code.qmd)documentation.
0 commit comments