JSON and data frames

Step 2: unnest the rows

df_col |> 
  unnest_wider(x) |> 
  unnest_longer(c(x, y))
## # A tibble: 3 × 2
##   x         y
##   <chr> <int>
## 1 a        10
## 2 x        NA
## 3 z         3