| randomize_feature_order | R Documentation | 
Randomize feature order to eliminate any position-dependent effects
randomize_feature_order(dataset, outcome_colname)
| dataset | Data frame with an outcome variable and other columns as features. | 
| outcome_colname | Column name as a string of the outcome variable
(default  | 
Dataset with feature order randomized.
Nick Lesniak, nlesniak@umich.edu
Kelly Sovacool, sovacool@umich.edu
dat <- data.frame(
  outcome = c("1", "2", "3"),
  a = 4:6, b = 7:9, c = 10:12, d = 13:15
)
randomize_feature_order(dat, "outcome")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.