SyntaxFix
Write A Post
Hire A Developer
Questions
Pandas does column wise normalization by default. Try the code below.
X= pd.read_csv('.\\data.csv') X = (X-X.min())/(X.max()-X.min())
The output values will be in range of 0 and 1.