简体   繁体   中英

pandas automatically create dataframe from list of series with column names

I have a list of pandas series objects. I have a list of functions that generate them. How do I create a dataframe of the objects with the column names being the names of the functions that created the objects?

So, to create the regular dataframe, I've got:

pandas.concat([list of series objects],axis=1,join='inner')

But I don't currently have a way to insert all the functionA.__name__, functionB.__name__, etc. as column names in the dataframe.

How would I preserve the same conciseness, and set the column names?

You can set the column names in a second step:

df = pandas.concat([list of series objects],axis=1,join='inner')
df.columns = [functionA.__name__, functionB.__name__]

IIUC, given your concat dataframe df you can:

df = pandas.concat([list of series objects],axis=1,join='inner')

and then assign the column names as a list of functions names:

df.columns = [functionA.__name__, functionB.__name__, etc.]

Hope that helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM