B.11 Bar plot geom_col

We can make bar plots using geom_col like this.

Code
g = ggplot(dd, aes(x = score, 
                   y = team))+
  geom_col(color = NA, 
           width = 0.8)
g

Code
g %>% 
  pub(type = 'bar')

[1] 85.89991
[1] 80
[1] 20
[1] 185.8999