I'm not able to change the diagonal plots in a ggpair-plot. I would like to change their appearance in general and maybe starting by leaving them blank. This is how I think it should be:
ggpairs(data=df,
columns=1:3,
diag = list(discrete = "blank"),
title="APD pool",
mapping=ggplot2::aes(colour = Irradiated)
)
but it ends with a density curve(?!) in the diagonal elements. Due to Robin's comment I tried it with
ggpairs(data=df,
columns=1:3,
diag = list(continous = "blank"),
title="APD pool",
mapping=ggplot2::aes(colour = Irradiated)
)
but it doesn't change.
What am I doing wrong? Thank you!
Reference: https://rdrr.io/cran/GGally/man/ggpairs.html