I'm pretty new to R. I have done some search but still have trouble with this issue.
This is an example of my data (CSV) out of 100,000 records
{id_outlet_delivery:22015,name:Branch A}6 ,
{id_outlet_delivery:22016,name:Branch B}7 ,
{id_outlet_delivery:22017,name:Branch C}8
What I want is to convert this to data frame so that I can perform some analysis. (I don't want the number 6,7,8 as in the example to be in the data frame).
RJSONIOorjsonlite.readLinesand either convert the whole thing to a proper JSON string/format or parse each line separately and combine everything into data frame rows.