简体   繁体   中英

IDE that recognizes pandas objects

Is there a Python IDE that recognizes pandas objects such as Dataframes? If not, is there a plan to develop this?

This is done well in RStudio for R. There dataframes are listed and can be viewed outside of the terminal. Spyder's object viewer (as one example) does not pick up on Dataframes from pandas. It should be possible to view the dimensions, column names and other useful information.

I am using spyder and it is the closest I have found to something like Rstudio. It also integrates with Ipython!

Spyder

I don't know anything about a pandas-centric IDE but the main difference between python and R is that python is a general purpose object with so many dynamic features that is very difficult to make and IDE which introspects all the objects while you're coding. One useful approach for the python community is to use IPython as interactive shell, it works really nice with pandas , matplotlib , numpy and scipy .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM