You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we use different approaches to turn nested lists into tibbles.
Is it worth harmonising the approaches? Is there a best, most canonical/readable/maintainable way?
# odata_entitylist_service_get: ds$value is a simple nested list
nested_list |> purrr::map_df(ds$value, ~ tibble::as_tibble(.x))
# entity_changes: list of lists, inner list names should become column names
|> purrr::map_df(~ purrr::map_df(.x, ~ tibble::as_tibble(.x)))
Earlier code like project_detail might benefit from a more canonical approach too.
The text was updated successfully, but these errors were encountered:
Feature
Currently we use different approaches to turn nested lists into tibbles.
Is it worth harmonising the approaches? Is there a best, most canonical/readable/maintainable way?
Earlier code like
project_detail
might benefit from a more canonical approach too.The text was updated successfully, but these errors were encountered: