cis-ds / Discussion

Public discussion
10 stars 15 forks source link

03 #195

Closed EmmaYan29 closed 2 years ago

EmmaYan29 commented 3 years ago
## Use the script below to generate a reproducible example
## using the reprex package. Once you generate it, post it on
## https://github.com/uc-cfss/Discussion/issues/182
## 
## Hint: look at the input and outfile arguments to reprex()

library(tidyverse)
library(here)
#> here() starts at /home/emmayan/uc-cfss-reproducible-examples-and-git-4cced8f

# import data file
urban <- read_csv(here("data", "urbanization-state.csv"))
#> 
#> ── Column specification ────────────────────────────────────────────────────────
#> cols(
#>   state = col_character(),
#>   urbanindex = col_double()
#> )

# how do I reorder the bars from largest to smallest?
ggplot(data = urban, mapping = aes(x = state, y = urbanindex)) +
  geom_col() +
  coord_flip()

Created on 2021-07-13 by the reprex package (v2.0.0)