I am trying to scale a some number to a range of 0 - 1 using preprocessing from sklearn. Thats what i did:
preprocessing
sklearn
data = [44.645, 44.055,
You're putting your data into a list for some reason, but you shouldn't:
data_scaled = min_max_scaler.fit_transform(data)