Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm: Is there a way to make the "data view" auto update when dataframe is changed?

Tags:

python

pycharm

When you select "View as DataFrame" in the variables pane it has a nice spreadsheet like view of the DataFrame. That said, as the DataFrame itself changes, the Data View does not auto update and you need to reclick the View as DataFrame to see it again. Is there a way to make PyCharm autoupdate this? Seems like such a basic feature.

like image 226
k-war Avatar asked Jul 14 '17 15:07

k-war


1 Answers

Unfortunately, no. The only thing you can do is use 'watches' to watch the variable and open when you want it. It requires a lot of background processing and memory usage to display the dataframe.

like image 105
Petar Avatar answered Sep 20 '22 04:09

Petar