Get variable importances
get_variable_importance(models)
models | model_list object |
---|
Data frame of variables and their importance for predictive power
Some algorithms provide variable importance, others don't. The best-performing model that offers variable importance will be used.
#>#>#> #>#>get_variable_importance(m)#> # A tibble: 10 x 2 #> variable importance #> * <chr> <dbl> #> 1 cyl 100. #> 2 wt 59.5 #> 3 disp 57.5 #> 4 hp 42.6 #> 5 vs 40.2 #> 6 am 18.2 #> 7 drat 9.49 #> 8 gear 9.20 #> 9 carb 8.49 #> 10 qsec 0.