My pd.series looks like this:
df.head()
0 status parentName name describe parent...
1 status parentName name describe parent...
2 status parentName name describe parent...
3 status parentName name describe parent...
4 status parentName name describe parent...
Name: destinationurl, dtype: object
and each row is a dataframe, which looks like this:
status parentName name describe parentDescribe parentEnName parentID id enName
0 0 IT 电子邮箱 提供电子邮箱服务的站点。 Information Technology 25 144 Email
Now I want to use apply function to combine all the rows, and then turn it to dataframe. just like 'rbind' function do in R.
How can I do this with Python Pandas?