I have a simple question.
How can I get totally blank spaces in the upper panel of a matrix using ggpairs?
I am using this code:
ggpairs(iris, columns = 2:4, title = "[1989]",
upper = list (continuous = "blanck"), lower = list(continuous = "points"), diag = list(continuous = "blanck"),
axisLabels = "show",
legends = TRUE)
I just want the 3 plots on the lower panel, but the code print grids and the label "Incorrect Plot" both in the diagonal and upper panel.
I will appreciate any help!
blank
instead ofblanck
for starters :P (and it will be fixed) – LyzandeR