Posts by Wilian Marques Miron da Silva • 51 points
2 posts
-
3
votes1
answer656
viewsQ: How to put percentage in bar graph?
I’m not getting a percentage of the bar chart below. I wonder if anyone can help me. dado <- data.frame("Estado" =c("ALESP", "ALRS", "ALMG"), "teste" =c(9, 29,20)) library(ggplot2) ggplot(dado,…
-
2
votes2
answers694
viewsQ: Double bar graph
I am trying to make a double bar chart with the following data frame: Total_CPIs <- data.frame(Período =c(1995, 1999, 2003, 2007, 2011), SP = c(12, 11, 2, 20, 22), RS = c(3, 4, 2, 4, 4)) The…