I am trying to make a correlation matrix with all these variables but when I get the table I only get "?" as a result. I am not sure why maybe because the variables I use have missing values?
library(corrplot)
v <- finaliniai %>% select(berd_mio_eur, RRDIN_by_TOT_TURN_PC, INNO.y, uibepart, uibedvaintrca, ENTRP_EDU_PC, RRDEX_BY_TOT_TURN_PC, avg_prsnnl_costs_ths_eur)
v.cor = cor(v)
corrplot(v.cor)