Skip to content
Permalink
0d633f79e8
Go to file
 
 
Cannot retrieve contributors at this time
8 lines (7 sloc) 254 Bytes
library(tidyr)
library(dplyr)
dadmom <- foreign::read.dta("http://www.ats.ucla.edu/stat/stata/modules/dadmomw.dta")
dadmom %>%
gather(key, value, named:incm) %>%
separate(key, c("variable", "type"), -2) %>%
spread(variable, value, convert = TRUE)
You can’t perform that action at this time.