I want to add a white gap as a separator between specific columns in the correlation heatmap generated by corrplot in R.
Code:
library(corrplot)
M = cor(mtcars)
corrplot(M, method = 'number')
corrplot

- I want a white gap between the second and third columns as shown below.

Is there any way to do this in R?
We could do it this way: Just enter a column with zeros: