4

我可以用另一种方式解决这个问题;但是,我有兴趣确切了解为什么尝试使用列表理解来迭代 pandas DataFrame 不起作用。(这a是一个数据框)

def func(a,seed1,seed2):
    for i in range(0,3):
        # Sum of squares. Results in a series containing 'date' and 'num' 
        sorted1 = ((a-seed1)**2).sum(1)
        sorted2 = ((a-seed2)**2).sum(1)

        # This makes a list out of the dataframe. 
        a = [a.ix[i] for i in a.index if sorted1[i]<sorted2[i]]
        b = [a.ix[i] for i in a.index if sorted1[i]>=sorted2[i]]
        # The above line throws the exception:
        # TypeError: 'builtin_function_or_method' object is not iterable

        # Throw it back into a dataframe...

        a = pd.DataFrame(a,columns=['A','B','C'])
        b = pd.DataFrame(b,columns=['A','B','C'])

        # Update the seed.
        seed1 = a.mean()
        seed2 = b.mean()

        print a.head()
        print "I'm computing."
4

1 回答 1

3

问题是在第一行之后,a 不再是 DataFrame:

a = [a.ix[i] for i in a.index if sorted1[i]<sorted2[i]]
b = [a.ix[i] for i in a.index if sorted1[i]>=sorted2[i]]

它是一个列表,因此没有索引属性(因此出现错误)。

一个 python 技巧是在一行中执行此操作(同时定义它们),即:

a, b = [a.ix[i] for ...], [a.ix[i] for ...]

也许更好的选择是在这里使用不同的变量名(例如 df)。

就像你说的,在 pandas 中有更好的方法可以做到这一点,最明显的是使用面具:

msk = sorted1 < sorted2

seed1 = df[msk].mean()
seed2 = df[~msk].mean()
于 2013-08-20T16:54:07.440 回答