i have a data that range between 0 - 2,9.
I need it to be normalized with MinMaxScaler with 0 - 1 range.
I need to transform 2.9 into 0 and 0 into 1. My solution is to subtract all numbers with 2.9 and make it absolute. But is there any other way more efficient than that ? I'm using sklearn for normalization