Question 23
What will be the output of the following code ?
from sklearn.preprocessing import MinMaxScaler, StandardScaler
data = [[0, 5], [8, 3], [3, 4], [7, 2], [7, 9]]
scaler = StandardScaler()scaler.fit(data)print(scaler.var_[0])