How to normalize numpy array columns differently?

131 Views Asked by At

I have a NumPy array and I want to normalize each column differently. Means 1st column should be normalized between 0 to 1, second and third between -1 to 1 and 4th column between 0 to 1. How can I do it? MinMaxScaler scale every column between 0 to 1.

0

There are 0 best solutions below