Plotly Graph Part 2
##
## -- Column specification --------------------------------------------------------
## cols(
## name = col_character(),
## state = col_character(),
## state_code = col_character(),
## type = col_character(),
## degree_length = col_character(),
## room_and_board = col_double(),
## in_state_tuition = col_double(),
## in_state_total = col_double(),
## out_of_state_tuition = col_double(),
## out_of_state_total = col_double()
## )
##
## -- Column specification --------------------------------------------------------
## cols(
## name = col_character(),
## total_enrollment = col_double(),
## state = col_character(),
## category = col_character(),
## enrollment = col_double()
## )
##
## -- Column specification --------------------------------------------------------
## cols(
## rank = col_double(),
## name = col_character(),
## state_name = col_character(),
## early_career_pay = col_double(),
## mid_career_pay = col_double(),
## make_world_better_percent = col_double(),
## stem_percent = col_double()
## )
##
## -- Column specification --------------------------------------------------------
## cols(
## type = col_character(),
## year = col_character(),
## tuition_type = col_character(),
## tuition_cost = col_double()
## )
## [1] TRUE
## # A tibble: 90 x 4
## # Groups: year [19]
## type year tuition_type tuition_cost
## <chr> <chr> <chr> <dbl>
## 1 All Institutions 1985-86 4 Year Constant 12274
## 2 All Institutions 1985-86 2 Year Constant 7508
## 3 All Institutions 1995-96 4 Year Constant 16224
## 4 All Institutions 1995-96 2 Year Constant 7421
## 5 All Institutions 2000-01 4 Year Constant 17909
## 6 All Institutions 2000-01 2 Year Constant 7576
## 7 All Institutions 2001-02 4 Year Constant 18573
## 8 All Institutions 2001-02 2 Year Constant 7786
## 9 All Institutions 2002-03 4 Year Constant 19240
## 10 All Institutions 2002-03 2 Year Constant 8331
## # ... with 80 more rows
## # A tibble: 90 x 5
## type year tuition_type tuition_cost Year
## <chr> <chr> <chr> <dbl> <dbl>
## 1 All Institutions 1985-86 4 Year Constant 12274 1985
## 2 All Institutions 1985-86 2 Year Constant 7508 1985
## 3 All Institutions 1995-96 4 Year Constant 16224 1985
## 4 All Institutions 1995-96 2 Year Constant 7421 1985
## 5 All Institutions 2000-01 4 Year Constant 17909 1985
## 6 All Institutions 2000-01 2 Year Constant 7576 1985
## 7 All Institutions 2001-02 4 Year Constant 18573 1995
## 8 All Institutions 2001-02 2 Year Constant 7786 1995
## 9 All Institutions 2002-03 4 Year Constant 19240 1995
## 10 All Institutions 2002-03 2 Year Constant 8331 1995
## # ... with 80 more rows
