What should be performed first on numeric data? StandardScaler() or SimpleImputer(missing_values=np.NaN, strategy=‘mean’)
I think inputting first will not affect the mean, but the standard deviation may be a bit lower. So the order should be 1. Standard Scaler, 2. Simple Imputer ?