Created
September 3, 2022 11:19
-
-
Save samirsaci/f6e9acb54bad0d03fb396c91fcdcf2c5 to your computer and use it in GitHub Desktop.
Mail Report
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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