Created
March 31, 2021 21:28
-
-
Save samirsaci/e0ac07956fd512c4b4ff69d8e76d1f89 to your computer and use it in GitHub Desktop.
Simple Plot
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
| ax = df_par.plot(x='%SKU', y='%CumSum', figsize = (20,7.5)) | |
| plt.xlabel('Percentage of SKU (%)',fontsize=15) | |
| plt.ylabel('Percentage of Boxes Ordered (%)',fontsize=15) | |
| plt.title('Pareto Analysis using Cumulative Sum of Boxes Prepared (%) = f(%SKU)', fontsize = 15) | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment