Ok I tried 1.2 I see I can do code complete for python inside R but not inside Python snippets
so this get code completion:
```{r setup, include=FALSE}
pandas <- import("pandas")
plt <- import("matplotlib.pyplot")
np <- import("numpy")
t = np$arange(0.1, 2, 0.01)
y <- t^2
.
.
.
```
while this does not get code completion working:
```{python}
flights = pandas.read_csv("~/Downloads/flights.csv")
print(flights.head())
import matplotlib.pyplot as plt
```
I guess that is the supposed to be status in 1.2 thanks!
https://blog.rstudio.com/2018/03/26/reticulate-r-interface-to-python/