Viewing dataframes in Spyder using a command in its console

Viewed 19974

I have been using R Studio for quite some time, and I find View() function very helpful for viewing my datasets.

Is there a similar View() counterpart in Spyder?

1 Answers

(Spyder maintainer here) There's no function similar to view() in Spyder. To view the contents of a Dataframe, you need to double-click on it in the Variable Explorer.

Related