trying to update the dataframe:
hist.loc['2021-01-20':'2021-01-22']
, but with
hist.loc['2021-01-20':'2021-01-22']['ETH-USD']['nof'] = 1
I still get the same:
I would expect to have "1"-s in the "nof" column of "ETH-USD" after the update, but there are still "0"-s. Why is that, and how to solve it?
Thanks, Balazs
