Skip to content

Instantly share code, notes, and snippets.

@samirsaci
Created September 3, 2022 11:19
Show Gist options
  • Select an option

  • Save samirsaci/f6e9acb54bad0d03fb396c91fcdcf2c5 to your computer and use it in GitHub Desktop.

Select an option

Save samirsaci/f6e9acb54bad0d03fb396c91fcdcf2c5 to your computer and use it in GitHub Desktop.
Mail Report
# Bar Plot: Orders/Lines
fig, ax = plt.subplots(figsize=(14, 7))
df_plot.plot.bar(figsize=(8, 6), edgecolor='black', x='DAY', y=['ORDERS', 'LINES'],
color=['tab:blue', 'tab:red'], legend= True, ax = ax)
plt.xlabel('DAY', fontsize = 12)
plt.title('Workload per day (Lines/day)', fontsize = 12)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment