I'm looking to turn two columns in a dataframe into a dictionary, column_a holds the item, and column_b has the description:
column_a column_b
---------------------
Furniture Table
Furniture Chair
Tech Laptop
Tech Screen
And the result should be:
{'Furniture':['Table','Chair'], 'Tech' : ['Laptop', 'Screen']}