Skip to content

Commit a9b4e28

Browse files
ch11 edited
1 parent b7cb528 commit a9b4e28

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

jupyter.Rmd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ To run a code cell independently, the cell needs to first be activated. This
104104
is done by clicking on it with the cursor. Jupyter will indicate a cell has been
105105
activated by highlighting it with a blue rectangle to its left. After the cell
106106
has been activated (Figure \@ref(fig:activate-and-run-button)), the cell can be run by either pressing the **Run** (`r fa("play", height = "11px")`)
107-
button in the toolbar, or by using a keyboard shortcut of
108-
`Shift + Enter`.
107+
button in the toolbar, or by using the keyboard shortcut `Shift + Enter`.
109108

110109
```{r activate-and-run-button, echo = FALSE, fig.cap = "An activated cell that is ready to be run. The red arrow points to the blue rectangle to the cell's left. The blue rectangle indicates that it is ready to be run. This can be done by clicking the run button (circled in red).", fig.retina = 2, out.width="100%"}
111110
image_read("img/activate-and-run-button-annotated.png") |>
@@ -135,7 +134,7 @@ image_read("img/restart-kernel-run-all.png") |>
135134
```
136135

137136
### The Kernel
138-
The kernel \index{kernel}\index{Jupyter notebook!kernel|see{kernel}} is a program that executes the code inside your notebook and
137+
The kernel\index{kernel}\index{Jupyter notebook!kernel|see{kernel}} is a program that executes the code inside your notebook and
139138
outputs the results. Kernels for many different programming languages have
140139
been created for Jupyter, which means that Jupyter can interpret and execute
141140
the code of many different programming languages. To run R code, your notebook
@@ -166,7 +165,7 @@ image_read("img/create-new-code-cell.png") |>
166165

167166
## Markdown cells
168167

169-
Text cells inside a Jupyter notebook are \index{markdown} \index{Jupyter notebook!markdown cell} called Markdown cells. Markdown cells
168+
Text cells inside a Jupyter notebook are\index{markdown}\index{Jupyter notebook!markdown cell} called Markdown cells. Markdown cells
170169
are rich formatted text cells, which means you can **bold** and *italicize*
171170
text, create subject headers, create bullet and numbered lists, and more. These cells are
172171
given the name "Markdown" because they use *Markdown language* to specify the rich text formatting.

0 commit comments

Comments
 (0)