This is a barplot I have:
How can I have a black outline for each bar and also, change the font size of the axis label and values on the label?
mm1=melt(data[,c('label','cut_scorer1','cut_scorer2')], id = 1)
assign(cut_score,ggplot(mm1, aes(x = label, y = value, width = 0.8)) +
geom_bar(aes(fill = variable), stat = "identity", position = "dodge")+ sale_fill_manual(values=alpha(c('light green','dark green'),0.7), name = "Scorer",
labels = c("1", "2")) +
labs(title = paste(subject_name,"Cutting", sep = " - "), x = "", y =
"Score") +
theme(text = element_text(size = 15)) + coord_cartesian( ylim =
c(min(mm1$value),max(mm1$value))))