how can i change the value in the data frame based on the index value code example
Example: change dataframe value by index
x y
A NaN NaN
B NaN NaN
C NaN NaN
df.at['C', 'x'] = 10
x y
A NaN NaN
B NaN NaN
C NaN NaN
df.at['C', 'x'] = 10