I have user data in a df_user : only 1 row
user_id, age, height, item_id, item_height
1, 11, 15, 2, 3
I have df with same columns
user_id, age, height, item_id, item_height
2, 22, 33, 3, 4
5, 22, 33, 5, 4
Now I want to assign some columns (user_id, age, height) of df using the values of df_user
so the result would be
user_id, age, height, item_id, item_height
1, 11, 15, 3, 4
1, 11, 15, 5, 4
I'm currently thinking of the following, are their better one?
df = df.assign(user_id=df_user.user_id.values, age=df_user.age.values, height=df_user.height.values) 
Mainly, it's tedious to type those when you have more columns to copy..

