colleges-bordering-mn.csv

The data in colleges-bordering-mn.csv contains institutional data for 104 colleges and universities in the five state area (MN, IA, WI, ND, and SD). These data were collected by the Department of Education for the 2013 College Score Card. The variables are:


Preview

# Import Data
colleges = readr::read_csv(file = "https://raw.githubusercontent.com/zief0002/rustic-penguin/main/data/colleges-bordering-mn.csv")

# View data
colleges
# A tibble: 104 × 11
   name    tuition_in_state tuition_out_state state public  main admission act75
   <chr>              <dbl>             <dbl> <chr>  <dbl> <dbl>     <dbl> <dbl>
 1 Buena …            29448             29448 IA         0     1     0.696    25
 2 Centra…            30700             30700 IA         0     1     0.658    26
 3 Clarke…            28000             28000 IA         0     1     0.775    25
 4 Coe Co…            35730             35730 IA         0     1     0.617    28
 5 Cornel…            36430             36430 IA         0     1     0.641    29
 6 Dordt …            26540             26540 IA         0     1     0.754    28
 7 Drake …            30889             30889 IA         0     1     0.660    30
 8 Univer…            25520             25520 IA         0     1     0.774    22
 9 Gracel…            23530             23530 IA         0     1     0.502    24
10 Grand …            22628             22628 IA         0     1     0.954    23
# ℹ 94 more rows
# ℹ 3 more variables: avg_fac_salary <dbl>, completion <dbl>, pct_pell <dbl>