I have a corrplot that has NA's in the correlation matrix. Corrplot replaces tiles that have NA in the correlation matrix with "?" (see below). Does anyone know a way to replace these tiles with another color, rather than the questions mark?
This code gives the following image:
corrplot(matrix(data = c(0.5,0.2,NA,NA, 0.7,0.5),nrow = 3, ncol = 2),method="shade",shade.col=NA, type = 'lower')
The lower left tile I would like to define as a color not in the correlation color palate.




NAvalues with 0s before plotting and they should become blank white tiles. - Zach