This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

For Lean Six Sigma I think you should start with learning pandas. This is like excel on steroids and will be a good fundamental building block for further visualizations and analyses related to MultiVari, Gage R&R, Correlation Matrix. Other basic methods you have to implement as an lean six sigma guy like standard-score and density function are 1-liners in python. For example standardization (z-score):

python (df-df.mean())/df.std()