Answers for "ggplot legend title"

-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
3

ggplot legend title

+ labs(color='NEW LEGEND TITLE')
Posted by: Guest on March-31-2021
1

ggplot chart title

+ labs(title='NEW LEGEND TITLE')
Posted by: Guest on June-08-2021
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

remove ggplot legend

bp + theme(legend.position="none")
Posted by: Guest on May-20-2020

Browse Popular Code Answers by Language