View(flights)
Error in View(flights): ‘View()’ not yet supported in the Jupyter R
kernel Traceback:
- View(flights)
- stop(sQuote("View()"), " not yet supported in the Jupyter R kernel")
I want to pull and display data in r language with jupyter-notebook, but I guess the notebook does not support opening all this data. Is there a solution for this?
>Solution :
The View-function is not base R, but rather comes with Rstudio. As an alternative, you can use head from base R or glimpse from the tidyverse.