# http://www.sthda.com/english/wiki/visualize-correlation-matrix-using-correlogram
# option 1
library(corrr)
df %>% dplyr::select(-team) %>% corrr::correlate() %>%
corrr::rearrange(method = "MDS", absolute = F) %>%
corrr::shave() %>%
corrr::rplot(shape = 19, colors = c("red", "green")) +
theme(axis.text.x = element_text(angle = 69, hjust = 1))
Bo\(^2\)m =)