permute
lm
and output the results as a tidy
table.
tidy_lm_permute(data, formula, n_permute = 1000, var_permute)
data | a data.frame to be analyzed |
---|---|
formula | a formula to be analyzed as typically written for the |
n_permute | = 1000 (default) the number of permutations to perform |
var_permute | variable(s) to unlink in the permutation |
outputs tidy
table that includes the p.value from the permutation of a lm
test
packages <- c("broom", "broomExtra", "dplyr", "modelr", "purrr", "tibble") xfun::pkg_attach2(packages, message = F) data <- tibble( a = scale(sample.int(100), scale = F), b = scale(sample.int(100), scale = F), c = b^2, d = scale(sample.int(100), scale = F) ) tidy_lm_permute(data = data, formula = "a ~ b + c", n_permute = 100, var_permute = "a")#> Error: No tidyselect variables were registered