Assume that I have the following dataframe
id item_name item_date item_quantity
0 computer hp 01/10/2018 50
1 computer hp 02/10/2018 201
2 computer dell 01/10/2018 45
3 computer dell 02/10/2018 59
I would like a way to create two dataframe from this one :
new_df1
id item_name item_date item_quantity
0 computer hp 01/10/2018 50
1 computer hp 02/10/2018 201
new_df2
id item_name item_date item_quantity
2 computer dell 01/10/2018 45
3 computer dell 02/10/2018 59
Can you explain me how to do this with a minimum (?) time ? Thank you. If you don't understand, just let me know. I will rephrase it ;)