I have assigned a variable aae
with one column of pandas dataframe. If any modification is made on variable aae
then the values of pandas dataframe get automatically modified. Please look at this example:
modification in aae
makes an automatic change in pandas dataframe value without any direct change made in df['Absorption_Angstrom_Exponent_440-870nm']
. If aae
is modified then pandas dataframe df
should not be changed. Please help me with this automatic update issue with pandas dataframe.