i created a dataframe and added a row
like this
name A2016 A2017 E2018 E2019 E2020
1 sale 6769.0000 9581.0000 11304.000 13170.0000 15303.0000
2 op 926.0000 1472.0000 1829.000 2169.0000 2550.0000
3 ni 857.0000 1236.0000 1584.000 1876.0000 2194.0000
4 eps 0.4800 0.5800 0.750 0.8800 1.0300
5 eps 7.9776 9.6396 12.465 14.6256 17.1186
and i tried to change the value at [5,'name']
table[5,'name'] <- 'pe'
but it didn't work, value was changed to #NA then i tried
table[5,'name'] <- 'eps'
value changed back to 'eps'
why? do you know why i can't change to 'pe'?