microsoft / acceleratoRs

Data science and AI solution accelerator suite that provides templates for prototyping, reporting, and presenting data science analytics of specific domains

Home Page:https://github.com/Microsoft/acceleratoRs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The collinearity is not referenced when adding it to `ignore` variables, just listed as NULL

camnesia opened this issue · comments

Here is a bit of code to add one of the highly correlated variables to the list to be ignored.

corvariables <- mc %>%
  filter(cor > 0.9) %>%
  select(var1) %>%
  pull() %T>% print()

ignore <- union(ignore, corvariables) %>% print()