I'm having some issues with reading items from Json file, and having some issues getting the data out of it to columns.
{
"sample":[
{
"value":"Red",
"id":"1"
},
{
"value":"green",
"id":"2"
},
{
"value":"orange",
"id":"3"
}
],
"scientific_names":"Buxus microphylla",
"gender":"bushes",
"examples":"Oleander"
}
I would like to get this JSON objects in a dataframe like
+------------------+-------------------+--------+----------+--+
| sample | scientific_names | gender | examples | |
+------------------+-------------------+--------+----------+--+
| Red,green,orange | Buxus microphylla | bushes | Oleander | |
+------------------+-------------------+--------+----------+--+
| | | | | |
+------------------+-------------------+--------+----------+--+
| | | | | |
Anyone can help me please? Thank you!