Reputation: 93
I am using View() in Jupyter notebook, but it gives me errors: Error in View(states): ‘View()’ not yet supported in the Jupyter R kernel. Is there anyway to fix this?
Upvotes: 1
Views: 1185
Reputation:
View()
is really not supported in the Jupyter R kernel yet. You can track that at GitHub Issue #280 and see that in the source code of environment_shadow.r.
Instead, feel free to just use print()
, head()
, or maybe cat()
according to your needs.
Upvotes: 2