Hello,
When I try to do line-by-line evaluation in Python, it runs all the lines rather than one at a time like in R. Also, if you have eval=FALSE
in a R chunk, you can still do line-by-line runs, but not in Python. Are these normal behaviors for reticulate + Rmarkdown, so I am doing something wrong?
Thanks!
```{r}
1+1
2+2
```
```{python}
1+1
2+2
```