Код: Выделить всё
plt.figure(figsize=(14, 10))
sns.set(rc={
"xtick.labelsize": 15,
"ytick.labelsize": 15
})
sns.barplot(x='Industry', y='Revenue', data=df, hue='Industry', palette='viridis')
plt.title('Total Revenue by Industry')
plt.ylabel('Revenue (in $ millions)')
plt.xticks(rotation=70)

Подробнее здесь: https://stackoverflow.com/questions/791 ... rn-barplot