I can't find why this is happening. Can i get a justification ?
using pandas in python, if I write in the console:
pd.io.json.read_json('{"rCF":{"values":0.05}}')
I got printed a dataframe that looks like this
rCF
values 0.05
This if fine.
But if I write in the console:
pd.io.json.read_json('[{"rCF":{"values":0.05}}]')
I got printed a dataframe that looks like this
rCF
0 {u'values': 0.05}
in particular, why the key is u'values' and not just 'values'