I have a json file that I want to convert to a Pandas Dataframe. I have tried the previous solutions but could not get it to work.
Here is a sample from the file:
{"dateTime": "2022-08-18",
"minutes": [
{
"value": 94.5,
"minute": "2022-08-18T05:01:00"
},
{
"value": 94.4,
"minute": "2022-08-18T05:02:00"
},
I dont' need the "dateTime" column, and I want to get to:
value minute
94.5 2022-08-18 05:01:00
94.4 2022-08-18 05:02:00
I am unable to extract the "value" and "minute" to seperate columns. Any help would be appreciated.
pd.DataFrame( your_dict['minutes'] )give you?