Generate JSON from R data, tidyverse style
Is there a way to generate a JSON string from data that is contained in an R Tidyverse tibble such like this: library(tidyverse) d <- tribble( ~last_name, ~first_name, ~role, ~admin, "Gale", "Dorothy", "board member", FALSE, "Man", "Tin", "member", TRUE )…