I have a dataframe in pandas were each column has a different value range. For example:
df:
A B C
1000 10 0.5
765 5 0.35
800 7 0.09
How would I normalize all values as they were in one column i.e.
A
1000
765
800
10
5
7
0.5
0.35
0.09
and still keep the original dataframe structure?
Thanks!