python等价于View()数据框命令是什么?

时间:2019-05-07 07:49:46

标签: python r dataframe variable-dump

我刚刚开始在日常工作中学习用于数据科学任务的python。

我将spyder用作anaconda随附的python IDE。 而且我正在尝试学习探索数据框对象的有效方法。

作为RStudio R的用户,我非常喜欢View()命令,该命令以电子表格样式在单独的窗口中显示数据框,从而可以过滤和排序数据。

这是我在R / RStudio中的意思:

而不是像这样查看虹膜数据框:

> iris
    Sepal.Length Sepal.Width Petal.Length Petal.Width    Species
1            5.1         3.5          1.4         0.2     setosa
2            4.9         3.0          1.4         0.2     setosa
3            4.7         3.2          1.3         0.2     setosa
4            4.6         3.1          1.5         0.2     setosa
5            5.0         3.6          1.4         0.2     setosa
6            5.4         3.9          1.7         0.4     setosa
7            4.6         3.4          1.4         0.3     setosa
8            5.0         3.4          1.5         0.2     setosa
...

我想这样查看数据

View(iris)

enter image description here

在python或特定的python IDE中是否有提供这种功能的命令或特定程序包?

1 个答案:

答案 0 :(得分:2)

There's an open feature request to this effect,所以我想没有等效的直接 atm。

您可以按照How to get to last record of large dataframe in Spyder window?通过变量资源管理器将数据框查看为表格。在Jupyter(另一个主要为scipy设计的Python IDE)中,还有其他功能与Show DataFrame as table in iPython Notebook的作用相同。