How to fix json code to split in a table using dplyr
I’m trying to split this json code into an easier way to parse my data, I have tried to use jsonlite with fromJSON() but doesn’t work. Data { "PROB": 0.066977381909206, "Y": -3.221016563928024, "x": 933 } library(jsonlite) jsonStr <- ‘{ "PROB": 0.066977381909206, "Y": -3.221016563928024, "x": 933 }’ t = fromJSON(jsonStr) > t $PROB [1] 0.06697738 $Y… Read More How to fix json code to split in a table using dplyr