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 ?
我使用ggplot和geom_bar来获得188个类别和连续值。正如您所看到的,渲染是垂直的白色间距。我怎么能删除它?
1 个解决方案
#1
2
Try setting the width parameter in geom_bar to 1: geom_bar(width=1)
尝试将geom_bar中的width参数设置为1:geom_bar(width = 1)
#1
2
Try setting the width parameter in geom_bar to 1: geom_bar(width=1)
尝试将geom_bar中的width参数设置为1:geom_bar(width = 1)