I've encountered data dumps from postgresql with JSON columns in them. It'd be really cool if fread could auto-detect this and use jsonlite to parse those columns into lists.
Right now I'm doing dt[,col := lapply(col, jsonlite::fromJSON)], but it'd be cool if I could skip this step.
I've encountered data dumps from postgresql with JSON columns in them. It'd be really cool if fread could auto-detect this and use jsonlite to parse those columns into lists.
Right now I'm doing
dt[,col := lapply(col, jsonlite::fromJSON)], but it'd be cool if I could skip this step.