Ниже приведен мой код:
business_card_list = [[20180401, 'IT', 'anna'],
[20180401, 'IT', 'ena'],
[20180401, 'IT', 'sunna'],
[20180401, 'ART', 'jejus'],
[20180401, 'ART', 'zico'],
[20180401, 'ART', 'joker']]
business_df = pd.DataFrame(data = business_card_list, columns=['date', 'job_name', 'user_name'])
print(business_df)
![enter image description here](https://i.stack.imgur.com/EyGoF.png)
Я хочу изменить business_df
на такие изображения, приведенные ниже, путем группировки. Вы предлагаете в Dataframe?
![enter image description here](https://i.stack.imgur.com/ZSOvP.png)