The figure below show is the csv file that contain dataset that have 7 variable, this dataset contain jason data at column number 3 which is order_list variable
My question is how to parse the jarson data in column 3 which is order_list variable of this dataset.
what i already do :
library(jsonlite)
df2 <- purrr::map(df$order_list, jsonlite::fromJSON)
str(df2)
the column 3 still remain as jason data.