DrIDK
DrIDK

Reputation: 7954

ggplot : geom_bar with many bar

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 ?

enter image description here

Upvotes: 2

Views: 350

Answers (1)

Andrew Gustar
Andrew Gustar

Reputation: 18425

Try setting the width parameter in geom_bar to 1: geom_bar(width=1)

Upvotes: 3

Related Questions