-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
Closed
Labels
Needs TriageIssue that has not been reviewed by a pandas team memberIssue that has not been reviewed by a pandas team memberUsage Question
Description
Research
-
I have searched the [pandas] tag on StackOverflow for similar questions.
-
I have asked my usage related question on StackOverflow.
Link to question on StackOverflow
Question about pandas
"""
input:
df1:
name rpm power
0 John 1500 high+
1 Mary 1400 high-
2 Sally 300 low-
3 Doe 700 medium-
4 July 1000 medium+
df2:
name age
0 Peter 77
1 Sally 44
2 Micky 22
3 Sally 34
4 July 50
5 Bob 20
required output is:
but i want it df2:
name age rpm power
0 Peter 77 0 NA
1 Sally 44 300 low-
2 Micky 22 0 NA
3 Sally 34 300 low-
4 July 50 1000 medium+
5 Bob 20 0 NA
"""
Metadata
Metadata
Assignees
Labels
Needs TriageIssue that has not been reviewed by a pandas team memberIssue that has not been reviewed by a pandas team memberUsage Question