Posts by Mateus • 11 points
2 posts
-
0
votes1
answer32
viewsQ: How to change the position of bars/columns and how to place caption
ggplot(data = dados, aes(x = Meses,y = T.max, width = 777600))+ geom_bar(aes(y = T.max), fill="red", stat = "identity",position = "dodge" ) + geom_bar(aes(y = T.med), fill="blue", stat =…
-
0
votes1
answer60
viewsQ: How to change the legend, leaving it with the same strokes that are represented in the graph?
I generated a graph that has three types of line; dotted, dashed and continuous. The problem is that subtitles are displayed as if all lines were equal. How can I fix this? ggplot(dados,aes(x =…