JSON and data frames

We only need to create the columns, since the rows were already there:

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