how to change labels on legend ggplot
scale_color_manual(values = c("#D16103", "#4E84C4"),
labels = c("Justin", "Myself"))
how to change labels on legend ggplot
scale_color_manual(values = c("#D16103", "#4E84C4"),
labels = c("Justin", "Myself"))
remove ggplot legend
bp + theme(legend.position="none")
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"))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us