I am trying to merge 2 data frames by using the id and then trying to save the result in the JSON file.
| |id|a|b
|1| 5|1|4
|2|10|2|5
|3|15|3|6
+
| |id|a |b
|1| 5|10|13
|2|10|11|14
|3|15|12|15
=
| |id| a | b
|1| 5|1, 10|4, 13
|2|10|2, 11|5, 14
|3|15|3, 12|6, 15