I'm trying to create a more aesthetically pleasing graph. For some reason I am producing 2 legends at the top of my chart. I would like only the one on the right to remain, but I cannot figure out what I am doing wrong. Here is my code and graph.
plt <- ggplot(ac_total_melt, aes(Date, Value, fill = Action)) + 
  geom_line(
    aes(color = Action),
    size = .9
  )+
  geom_point(aes(colour = Action))+
  ylab("")+
 scale_color_manual(values=c('Dark Green','Dark red'), labels = c("Number Closed", "Number Opened"))+
  geom_text_repel(
    aes(color = Action, label = Value),
    show.legend = FALSE,
    family = "Lato",
    fontface = "plain",
    size = 4,
    direction = "y"
  )  + 
  theme(legend.position="top")+ 
  guides(color = guide_legend (override.aes = list(linetype = 0, size=5)))
plt


 
    