Answers for "edit legend ggplot"

2

how to change labels on legend ggplot

scale_color_manual(values = c("#D16103", "#4E84C4"),
                     labels = c("Justin", "Myself"))
Posted by: Guest on March-11-2020
0

ggplot put legend in plot

p + theme(legend.position = c(0.8, 0.2))
Posted by: Guest on July-20-2020
0

labs fill ggplot2

df <- data.frame(x=1:10,group=c(rep("a",5),rep("b",5)))

legend_title <- "OMG My Title"

ggplot(df, aes(x=x, fill=group)) + geom_density(alpha=.3) +   
    scale_fill_manual(legend_title,values=c("orange","red"))
Posted by: Guest on July-19-2020
0

legend title ggplot

p + scale_fill_discrete(name = "New Legend Title")
Posted by: Guest on July-22-2021

Browse Popular Code Answers by Language