Question 18
Consider the below code:
data = [[-3, 1], [-3, 1], [ 3, 5], [ 3, 5]]
from sklearn.preprocessing import StandardScalerss = StandardScaler()print(ss.fit_transform(data))What will be the output of the code snippet given above?