Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
255 views
in Technique[技术] by (71.8m points)

python - Get column name based on condition in pandas

I have a dataframe as below: enter image description here

I want to get the name of the column if column of a particular row if it contains 1 in the that column.

e.g.

For Row 1: Blanks,
For Row 2: Manufacturing,
For Row 3: Manufacturing,
For Row 4: Manufacturing,
For Row 5: Social, Finance, Analytics, Advertising,

Right now I am able to get the complete row only:

primary_sectors = lambda primary_sector: sectors[
    sectors["category_list"] == primary_sector
]

Please help me to get the name of the column in the above dataframe.

I tried this code:

primary_sectors("3D").filter(items=["0"])

It gives me output as 1 but I need output as Manufacturing

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use DataFrame.dot:

df1 = df.dot(df.columns)

If there is multiple 1 per row:

df2 = df.dot(df.columns + ';').str.rstrip(';')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...