diff --git a/easy/Feature_Scaling_Implementation/Feature_Scaling_Implementation.py b/easy/Feature_Scaling_Implementation/Feature_Scaling_Implementation.py index a2719ea..2cc540a 100644 --- a/easy/Feature_Scaling_Implementation/Feature_Scaling_Implementation.py +++ b/easy/Feature_Scaling_Implementation/Feature_Scaling_Implementation.py @@ -8,6 +8,8 @@ def feature_scaling(data: np.ndarray) -> (np.ndarray, np.ndarray): # type: igno ] c = 0 print(np.std(data[0])) + print(np.mean(data)) + print(np.std(data)) for i in data: std_dev = np.std(i) mu = np.mean(i)