Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

r - Make legend invisible but keep figure dimensions and margins the same

I have made a plot with a legend.

enter image description here

Using an image editing program I made the legend invisible (but otherwise the figure has the same dimensions)

enter image description here

Is it possible to do this in ggplot2? I want to have a 2x2 panel of diagrams in a document but only one legend.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Using this as an example,

library(ggplot2)

p <- ggplot(mtcars, aes(x = disp, y = hp, color = factor(cyl))) +
    geom_point() +
    geom_line()

enter image description here

The following seems to work:

p + theme(
        legend.text = element_text(color = "white"),
        legend.title = element_text(color = "white"),
        legend.key = element_rect(fill = "white")
    ) + 
    scale_color_discrete(
        guide = guide_legend(override.aes = list(color = "white"))
    )

enter image description here

Notice that the dimension of the gray plot area did not change.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...