I have two data frames, Df and Df2. I want to assign records in Df2 to Df1 to create the Df2_assigned_Df_1 data frame
Df.
- A
- B
- C
- C
- I
- J
- J
Df2
- C
- A
- J
- C
Df2_assigned_toDf_1
- A ----- 2.A
- B
- C ----- 1.C
- C ----- 4.C
- I
- J ----- 3.J
- J
How can I create Df2_assigned_toDf_1 ?
https://stackoverflow.com/questions/65745806/assigning-records-from-one-data-frame-to-another January 16, 2021 at 10:03AM
没有评论:
发表评论