Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. library(ggplot2)
  2. library(readxl)
  3.  
  4. Vendas <- read_excel("D:/BDados.xlsx", sheet = "Plan1")
  5.  
  6. ggplot(Vendas)+
  7. stat_count(aes(ID_LOC)) +
  8. labs(title = "Vendas", x="ID_Regioes", y="Total") +
  9. theme_grey(base_size = 10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement