| transpose_imputations | R Documentation |
Takes an imputation_df object and transposes it e.g.
list(
list(id = "a", values = c(1,2,3)),
list(id = "b", values = c(4,5,6)
)
)
transpose_imputations(imputations)
imputations |
An |
becomes
list(
ids = c("a", "b"),
values = c(1,2,3,4,5,6)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.