Skip to content

Instantly share code, notes, and snippets.

@samirsaci
Created March 31, 2021 21:28
Show Gist options
  • Select an option

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

Select an option

Save samirsaci/e0ac07956fd512c4b4ff69d8e76d1f89 to your computer and use it in GitHub Desktop.
Simple Plot
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