Skip to content

Instantly share code, notes, and snippets.

@aurielfournier
Created December 27, 2017 22:21
Show Gist options
  • Save aurielfournier/a32bcbe677c63143ef2d990651b72605 to your computer and use it in GitHub Desktop.
Save aurielfournier/a32bcbe677c63143ef2d990651b72605 to your computer and use it in GitHub Desktop.
library(purrr)
library(repurrrsive)
data(sw_films)
data(sw_people)
# here is the list
swfilms <- map(sw_films, "characters") %>%
set_names(map_chr(sw_films, "title"))
#
character_df <- map_df(sw_people, `[`,
c("height","name","url","mass"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment