I made a diffused matrix with the ggplot2 GGally extension with the following code
ggscatmat(dat2, columns = 2:6, color="car", alpha=0.8) + ggtitle("Korrelation") + theme(axis.text.x = element_text(angle=-40, vjust=1, hjust=0, size=10))
Now my problem is that in this case I really do not need a density layer or correlation coefficient. I only need scatterplots in the matrix. Is there a way to βremoveβ other faces? I can not find anything in the documentation.
I apologize for my bad English and thanks for any advice or help!

Edit: I found a not perfect solution with ggpairs yet:
ggpairs(dat2, columns = 2:6, mapping= aes(color=car), upper = "blank",diag = "blank") + theme(axis.text.x = element_text(angle=-40, vjust=1, hjust=0, size=10))
But now there is no legend, and two plot-like labels have not yet been loaded: 
source share