Answers for "change legend title ggplot2"

-1

ggplot2 remove legend

### Three options (where p is the plot object)

# Remove the legend title: 
p + theme(legend. title = element_blank())

# Hide the entire legend to create a ggplot with no legend. 
p + theme(legend. position = "none") 

# Hide legend for a specific geometry, say geom_text(). 
p + geom_text(show.legend = FALSE)
Posted by: Guest on June-29-2020
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

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
0

labs fill ggplot2

p <- ggplot(df, aes(x=rating, fill=cond)) + 
           geom_density(alpha=.3) + 
           xlab("NEW RATING TITLE") + 
           ylab("NEW DENSITY TITLE")
p <- p + guides(fill=guide_legend(title="New Legend Title"))
Posted by: Guest on July-19-2020

Browse Popular Code Answers by Language