Description Usage Arguments Examples
Align a data.frame to a template
| 1 | align_dfcol(target, template)
 | 
| target | data.frame | 
| template | data.frame | 
| 1 2 3 4 5 | target <- data.frame(matrix(NA, ncol = 5))
template <- data.frame(matrix(NA, ncol = 6))
names(target) <- c(letters[c(3, 1, 2, 4, 8)])
names(template) <- c(letters[1:6])
align_dfcol(target =  target, template = template)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.