I have the following pandas dataframe and would like any pointers in converting this to an Orange table with a basket format:
orders_item=pandas.DataFrame({'order_number':['001','002','002','002','003','003','003','003','003'],
'item':['Beef','Beef','Fish','Eggs','Beef','Oil','Salt','Pepper','MSG']})
I'll like to convert it to an orange table with Basket format similar to this:
Beef
Beef, Fish, Eggs
Beef, Oil, Salt, Pepper, MSG
Any help will be much appreciated.