Reputation: 7954
I m using ggplot and geom_bar for 188 categories versus continous values . As you can see, the render is hugly with vertical white spacing . How can I remove that ?
Upvotes: 2
Views: 350
Reputation: 18425
Try setting the width parameter in geom_bar to 1: geom_bar(width=1)
Upvotes: 3