Ana Carolina Pessoa
Ana Carolina Pessoa

Reputation: 89

"Incorrect Plot" label in ggpairs

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!

Upvotes: 2

Views: 214

Answers (1)

Ana Carolina Pessoa
Ana Carolina Pessoa

Reputation: 89

The correct code would be:

ggpairs(iris, columns = 2:4, title = "[1989]",
    upper = list (continuous = "blank"), lower = list(continuous = "points"), diag = list(continuous = "blank"),
    axisLabels = "show",
    legends = TRUE)

Upvotes: 2

Related Questions