how to scale value within some range pandas python code example
Example: 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()))