Skip to content
Permalink
0d633f79e8
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (9 sloc) 234 Bytes
# http://stackoverflow.com/questions/16032858
library(tidyr)
library(dplyr)
results <- data.frame(
Ind = paste0("Ind", 1:10),
Treatment = rep(c("Treat", "Cont"), each = 10),
value = 1:20
)
results %>% spread(Treatment, value)
You can’t perform that action at this time.