3

如果读取具有默认列名的文件,之后如何调用它们? df[1]似乎几乎所有时间都在工作。但是,它在编写如下条件时会抱怨类型:

In [60]: cond = ((df[1] != node) & (df[2] != deco))
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
/home/ferreirafm/work/colab/SNP/rawdata/<ipython-input-60-513a433bfeb5> in <module>()
----> 1 cond = ((df[1] != node) & (df[2] != deco))

/usr/lib64/python2.7/site-packages/pandas/core/series.pyc in wrapper(self, other)
140             if np.isscalar(res):
141                 raise TypeError('Could not compare %s type with Series'
--> 142                                 % type(other))
143             return Series(na_op(values, other),
144                           index=self.index, name=self.name)

TypeError: Could not compare <type 'str'> type with Series

按默认名称处理数据框列更适合我的应用程序。

4

2 回答 2

2

我是pandas master,这里读取文件后的默认列名肯定不是0,1,2,..注意可以使用df.icol()按位置选择列。这样,如果已设置列名或使用默认列名,则没有依赖性。

In [93]: data = """\
1,2,3
4,5,6
"""

In [94]: df = pd.read_csv(StringIO(data), header=None)

In [95]: df
Out[95]:
   X0  X1  X2
0   1   2   3
1   4   5   6

In [96]: df.icol(0)
Out[96]:
0    1
1    4
Name: X0
于 2012-10-05T14:08:53.253 回答
2

您似乎将一系列标量值与字符串进行比较:

In [73]: node = 'a'

In [74]: deco = 'b'

In [75]: data = [(10, 'a', 1), (11, 'b', 2), (12, 'c', 3)]

In [76]: df = pd.DataFrame(data)

In [77]: df
Out[77]: 
    0  1  2
0  10  a  1
1  11  b  2
2  12  c  3

In [78]: cond = ((df[1] != node) & (df[2] != deco))
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-78-0afad3702859> in <module>()
----> 1 cond = ((df[1] != node) & (df[2] != deco))

/home/.../python2.7/site-packages/pandas/core/series.pyc in wrapper(self, other)
    140             if np.isscalar(res):
    141                 raise TypeError('Could not compare %s type with Series'
--> 142                                 % type(other))
    143             return Series(na_op(values, other),
    144                           index=self.index, name=self.name)

TypeError: Could not compare <type 'str'> type with Series

请注意,pandas 可以处理一系列字符串和数字,但比较字符串和数字并没有真正意义,因此错误消息很有用。然而 pandas 可能应该给出更详细的错误信息。

如果您对第 2 列的条件是一个数字,它将起作用:

In [79]: deco = 3

In [80]: cond = ((df[1] != node) & (df[2] != deco))

In [81]: df[cond]
Out[81]: 
    0  1  2
1  11  b  2

一些评论:

也许你的一些困惑是由于熊猫的设计决定:

如果您从文件中读取数据read_csv,则结果数据框的默认列名设置为X.1X.N对于版本 >= 0.9 为X1to XN),它们是字符串。

0如果您从现有数组或列表或列名默认为N并且是整数的东西创建数据框。

In [23]: df = pd.read_csv(StringIO(data), header=None)

In [24]: df.columns
Out[24]: Index([X.1, X.2, X.3], dtype=object)

In [25]: df.columns[0]
Out[25]: 'X.1'

In [26]: type(df.columns[0])
Out[26]: str

In [27]: df = pd.DataFrame(randn(2,3))

In [30]: df.columns
Out[30]: Int64Index([0, 1, 2])

In [31]: df.columns[0]
Out[31]: 0

In [32]: type(df.columns[0])
Out[32]: numpy.int64

我开了一张票来讨论这个问题。

所以你的

In [60]: cond = ((df[1] != node) & (df[2] != deco))

如果 and 的类型与df[1]anddf[2]的类型相同,则应该适用于从数组或其他东西创建的数据框。nodedeco

如果你读过的文件read_csv

In [60]: cond = ((df['X.2'] != node) & (df['X.3'] != deco))

应该适用于<0.9的版本,而应该是

In [60]: cond = ((df['X2'] != node) & (df['X3'] != deco))

版本 >= 0.9。

于 2012-10-07T13:04:14.360 回答