Question 2
What will be the output of the following code?
import pandas as pdfrom sklearn.preprocessing import StandardScaler
data = pd.DataFrame({ 'col1': [1, 2, 3, 4, 5], 'col2': [10, 20, 30, 40, 50]})
ss = StandardScaler()
scaled_data = ss.fit_transform(data)print(ss.var_)