permute lm and output the results as a tidy table.

tidy_lm_permute(data, formula, n_permute = 1000, var_permute)

Arguments

data

a data.frame to be analyzed

formula

a formula to be analyzed as typically written for the lm function

n_permute

= 1000 (default) the number of permutations to perform

var_permute

variable(s) to unlink in the permutation

Value

outputs tidy table that includes the p.value from the permutation of a lm test

Examples

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