1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
---
title: "Using reticulate's Python Engine with knitr"
---
```{r setup, include=FALSE}
# load reticulate and set up engine
library(reticulate)
knitr::knit_engines$set(python = eng_python)
# use specific environment if available
# python <- "~/.virtualenvs/python-3.7.7-venv/bin/python"
# if (file.exists(python))
# reticulate::use_python(python, required = TRUE)
# use rlang error handler
if (requireNamespace("rlang", quietly = TRUE))
options(error = rlang::entrace)
```
```{r}
reticulate::py_config()
```
Python variables live across chunk boundaries.
```{python}
x = 1
y = 2
```
```{python}
print(x)
print(y)
```
Plots generated by `matplotlib` are properly displayed.
```{python, fig.width=4, fig.height=3, dev="svg"}
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.show()
plt.plot([1, 2, 3, 4])
plt.show()
```
```{python, fig.width=8, fig.height=3, dev="svg"}
import matplotlib.pyplot as plt
plt.plot(range(10))
```
```{python, fig.width=8, fig.height=3, dev="svg"}
import matplotlib.pyplot as plt
plt.hist(range(10))
```
Python can access objects available in the R environment.
```{r}
x <- 1:5
y <- 6:10
```
```{python}
print(r.x)
print(r['y'])
r.hello = "World"
r['answer'] = 42
```
```{r}
print(hello)
print(answer)
```
Arbitrary R code can be evaluated from Python.
```{python}
mpg = r["mtcars$mpg[1:5]"]
print(mpg)
```
- #126: Ensure single-line Python chunks that produce no output still have source code emitted.
```{python}
y = "a,b,c".split(",")
```
```{python}
print(y)
```
- #130: The `echo` chunk option is respected (for `TRUE` and `FALSE` values). Output, but not source, should show in the following output.
```{python echo=FALSE}
print("Chunk with echo = FALSE")
```
- #130: The `results` chunk option is respected for Python outputs. Source, but not output, should show in the following output.
```{python results='hide'}
print ("Chunk with results = 'hide'")
```
- #130: The `include` chunk option is respected for Python outputs. No chunk output should appear following this bullet.
```{python include=FALSE}
print ("Chunk with include = FALSE")
```
- #130: The `eval` chunk option is respected for Python outputs.
```{python eval=FALSE}
# We have set 'eval = FALSE' here
r["abc"] = 1
```
```{r}
exists("abc", envir = globalenv())
```
Respect the `error=TRUE` chunk option -- allow execution even after a Python
error occurs.
```{python, error=TRUE}
raise RuntimeError("oops!")
print("This line is still reached.")
```
Ensure that Exceptions are formatted w/ the type and notes.
```{python, error=TRUE}
class CustomException(Exception):
pass
e = CustomException("oops!")
# BaseException.add_note() added in Python 3.11
import sys
if sys.version_info >= (3, 11):
e.add_note("note 1: extra oopsy oops")
e.add_note("note 2: in the future avoid oopsies")
else:
print(sys.version_info)
raise e
print("This line is still reached.")
```
Ensure that lines with multiple statements are only run once.
```{python}
print("abc"); print("123")
```
Ensure that syntax errors do not block document generation when `eval = FALSE`.
```{python, eval=FALSE}
here be syntax errors
```
Output from bare statements should also be printed.
```{python}
"Hello, world!"
[x for x in range(10)]
```
Expressions that generate plots should be shown, if that is the final statement
within a chunk.
```{python}
import numpy as np, pandas as pd
a = np.random.normal(size=1000)
pd.Series(a).hist()
```
Ensure that outputs with `results = "hold"` are held to the end.
```{python, results="hold"}
print(1)
print(2)
print(3)
```
plotly plots should be auto-printed and displayed.
```{python}
import plotly.express as px
fig = px.scatter(x=[1, 2, 3], y=[5, 4, 6])
```
```{python}
fig
```
`_repr_html_()` methods are not called with unbound `__self__`
(https://github.com/rstudio/reticulate/issues/1249)
```{python}
import pandas as pd
pt = pd.DataFrame()
type(pt)
```
`_repr_markdown_()` methods are supported
(https://github.com/quarto-dev/quarto-cli/issues/1501):
```{python}
from IPython.display import Markdown
from tabulate import tabulate
table = [["Sun",696000,1989100000],
["Earth",6371,5973.6],
["Moon",1737,73.5],
["Mars",3390,641.85]]
Markdown(tabulate(
table,
headers=["Planet","R (km)", "mass (x 10^29 kg)"],
tablefmt="pipe"
))
```
Setting option `error=TRUE` also allows parsing errors.
```{python, error=TRUE}
for i in range(3):
print(i)
print(i+10)
```
|