Это работает:
mtcars %>%
select_if(is.numeric) %>%
cor(., use="complete.obs") %>% # we make the correlations, only on complete.obs
round(., 3) %>% # this just rounds up the numbers, we can remove it
corrplot::corrplot(., method="number") # call to corrplot function
![enter image description here](https://i.stack.imgur.com/aYejg.png)
Примечание , что если корреляция мала ,цвет шрифта будет почти белый .Поиграйте с параметрами цвета, чтобы настроить его.