I'm trying to create a DataFrame from my JSON output which looks like as shown below.
{
"tags":[
{
"stats":{
"rawCount":9
},
"name":"Temperature1",
"results":[
{
"attributes":{
"Location":[
"3rd Floor"
],
"Sensor-Serial-Number":[
"PT100"
]
},
"values":[
[
1460958592800,
24.2,
3
],
[
1460958602800,
24.1,
1
],
[
1460958612800,
23.9,
1
],
[
1460958622800,
24.2,
1
],
[
1460958632800,
24.5,
1
],
[
1460958642800,
24.9,
1
],
[
1460958652800,
24.6,
1
],
[
1460958662800,
24.7,
1
],
[
1460958672800,
24.7,
1
]
],
"groups":[
{
"type":"number",
"name":"type"
}
]
}
]
}
]
}
I only require values
, which I need to convert into a DataFrame as shown in the below image.