Practicing Statistics Interview Questions in Python
Conor Dewey
Data Scientist, Squarespace




company_count = df['Company'].value_counts()
sns.barplot(company_count.index, company_count.values)

df.boxplot('Price', 'Company', rot = 30, figsize=(12,8), vert=False)

Practicing Statistics Interview Questions in Python