Answers for "pandas normalize selected columns"

1

How to normalize the data to get to the same range in python pandas

# Assuming same lines from your example
cols_to_norm = ['Age','Height']
survey_data[cols_to_norm] = survey_data[cols_to_norm].apply(lambda x: (x - x.min()) / (x.max() - x.min()))
Posted by: Guest on June-16-2020
0

pandas normalize columns

import pandas as pd
from sklearn import preprocessing

x = df.values #returns a numpy array
min_max_scaler = preprocessing.MinMaxScaler()
x_scaled = min_max_scaler.fit_transform(x)
df = pd.DataFrame(x_scaled)
Posted by: Guest on June-04-2021

Code answers related to "pandas normalize selected columns"

Python Answers by Framework

Browse Popular Code Answers by Language