Scans a results table and returns variable names with p-values below a significance threshold.

find_sig_var(res_tab, sig_lev = 0.1)

Arguments

res_tab

Results table with a column named "p value".

sig_lev

Numeric significance threshold. Default = 0.1.

Value

Character vector of significant variable names.

Examples

if (FALSE) { # \dontrun{
find_sig_var(result_table, sig_lev = 0.05)
} # }