Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

python - How to extract unique values from pandas column where values are in list

I want to extract unique cities from city column in pandas dataframe. City column has values in list. How would I extract the cities frequency like:

Lahore  3
Karachi 2
Sydney  1

etc.

Sample dataframe:

    Name  Age      City
a   jack   34    [Sydney,Delhi]
b   Riti   31    [Lahore,Delhi]
c   Aadi   16  [New York, Karachi, Lahore]
d  Mohit   32     [Peshawar,Delhi, Karachi]

Thank you


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

1 Answer

0 votes
by (71.8m points)

Let us try explode + value_counts

out = df.City.explode().value_counts()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...