将元组附加到 Pandas DataFrame

Lon*_*oul 5 python-2.7 pandas

我正在尝试加入(垂直)一些元组,最好说我将这些元组插入到数据框中。但直到现在还做不到。问题出现了,因为我试图水平而不是垂直添加它们。

data_frame = pandas.DataFrame(columns=("A","B","C","D"))
str1 = "Doodles are the logo-incorporating works of art that Google regularly features on its homepage. They began in 1998 with a stick figure by Google co-founders Larry Page and Sergey Brin -- to indicate they were attending the Burning Man festival. Since then the doodles have become works of art -- some of them high-tech and complex -- created by a team of doodlers. Stay tuned here for more of this year's doodles"

aa = str1.split()
bb = zip(aa[0:4])

data_frame.append(bb,ignore_index=True,verify_integrity=False) 
Run Code Online (Sandbox Code Playgroud)

是否有可能或者我是否必须遍历元组中的每个单词才能使用插入

Jef*_*eff 4

你可以这样做

In [8]: index=list('ABCD')

In [9]: df = pd.DataFrame(columns=index)

In [11]: df.append(Series(aa[0:4],index=index),ignore_index=True)
Out[11]: 
         A    B    C                   D
0  Doodles  are  the  logo-incorporating
Run Code Online (Sandbox Code Playgroud)

或者,如果您要附加许多这样的行,只需创建一个列表,然后DataFame(list_of_series)在最后

In [13]: DataFrame([ aa[0:4], aa[5:8] ],columns=list('ABCD'))
Out[13]: 
         A    B     C                   D
0  Doodles  are   the  logo-incorporating
1       of  art  that                None
Run Code Online (Sandbox Code Playgroud)