full_college_scorecard_dat: The Full, Raw College Score Card Data Set

Description Usage Format Details References Examples

Description

The Full, Raw College Score Card Data Set

Usage

1

Format

A data frame with 7,593 rows and 1,825 variables

Details

A dataset containing all columns from the 2015 College Score Card data set. This data is raw, meaning it will likely need to be cleaned before it is usable. Cleaning may mean recoding variables and/or coercing data from one class type to another (see the examples section for an example coercing from character to numeric). See https://collegescorecard.ed.gov/data/documentation/ for documentation of the variable meanings.

References

https://collegescorecard.ed.gov/data/documentation/

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
library(dplyr)

full_college_scorecard_dat %>%
    select(TUITIONFEE_IN, PFTFTUG1_EF) %>%
    mutate_all(as.numeric) %>%
    ggplot(aes(TUITIONFEE_IN, PFTFTUG1_EF)) +
        geom_jitter()

## End(Not run)

trinker/exampledata documentation built on May 25, 2019, 8:32 p.m.