我想在hy中执行以下操作:

from StringIO import StringIO
import pandas as pd

s = """sepal_length  sepal_width  petal_length  petal_width species
0           5.1          3.5           1.4          0.2  setosa
1           4.9          3.0           1.4          0.2  setosa
2           4.7          3.2           1.3          0.2  setosa
3           4.6          3.1           1.5          0.2  setosa
4           5.0          3.6           1.4          0.2  setosa
5           5.4          3.9           1.7          0.4  setosa
6           4.6          3.4           1.4          0.3  setosa
7           5.0          3.4           1.5          0.2  setosa
8           4.4          2.9           1.4          0.2  setosa
9           4.9          3.1           1.5          0.1  setosa"""

df = pd.read_table(StringIO(s), sep="\s+")

df.loc[df.sepal_length > 4.5]

我该怎么办最后一句话?

我已经尝试过(.loc df (> df.sepal_length 4.5))
但它只返回locindexer。

最佳答案

有两种方法可以做到这一点:

  • 使用 . macro:
    (. df loc [(> df.sepal-length 4.5)])
    
  • 使用get:
    (get df.loc (> df.sepal-length 4.5))
    

  • 提示:请始终尝试在Hy文件上运行hy2py。它显示了生成的Python的外观。输出并非始终是有效的语法,但是它向您显示将哪些内容编译成什么。这两个都编译为df.loc[(df.sepal_length > 4.5)]

    还有一件事:注意我使用了sepal-length。 Hy将标识符中的破折号转换为下划线,因此与sepal_length相同,但被认为是更好的样式。

    10-06 12:36