├── .Rbuildignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── available_IPEDS.R ├── download_IPEDS.R ├── getIPEDSSurvey.R ├── getYearString.R ├── ipedsHelp.R ├── ipeds_help.R ├── ipeds_survey.R ├── load_ipeds.R ├── mapIPEDSFields.R ├── package.R ├── recode.R └── url_exists.R ├── README.Rmd ├── README.md ├── data-raw └── surveys.csv ├── data ├── cipcodes.csv ├── crosswalk.csv └── surveys.rda ├── demo ├── 00Index ├── Gender.R ├── Retention.r ├── SATretention.r └── ipeds2.R ├── ipeds.dev.R ├── man ├── available_ipeds.Rd ├── cipcodes.Rd ├── crosswalk.Rd ├── downloadAllSurveys.Rd ├── downloadHelp.Rd ├── downloadIPEDSSurvey.Rd ├── download_ipeds.Rd ├── formatYear.Rd ├── getIPEDSDownloadDirectory.Rd ├── getIPEDSSurvey.Rd ├── getYearString.Rd ├── ipeds-package.Rd ├── ipedsHelp.Rd ├── ipeds_help.Rd ├── ipeds_survey.Rd ├── load_ipeds.Rd ├── mapIPEDSFields.Rd ├── recodeAwardLevel.Rd ├── recodeControl.Rd ├── recodeDirectory.Rd ├── recodeGeographicRegion.Rd ├── recodeGraduateOffering.Rd ├── recodeHighestDegreeOffered.Rd ├── recodeHighestLevelOfOffering.Rd ├── recodeImputation.Rd ├── recodeInstitutionSize.Rd ├── recodeLevelOfInstitution.Rd ├── recodeOpenPublic.Rd ├── recodeSector.Rd ├── recodeTitleIVEligibility.Rd ├── recodeTitleIVIndicator.Rd ├── recodeUndergraduateOffering.Rd ├── surveys.Rd └── url_exists.Rd └── vignettes └── ipeds.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/NEWS -------------------------------------------------------------------------------- /R/available_IPEDS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/available_IPEDS.R -------------------------------------------------------------------------------- /R/download_IPEDS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/download_IPEDS.R -------------------------------------------------------------------------------- /R/getIPEDSSurvey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/getIPEDSSurvey.R -------------------------------------------------------------------------------- /R/getYearString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/getYearString.R -------------------------------------------------------------------------------- /R/ipedsHelp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/ipedsHelp.R -------------------------------------------------------------------------------- /R/ipeds_help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/ipeds_help.R -------------------------------------------------------------------------------- /R/ipeds_survey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/ipeds_survey.R -------------------------------------------------------------------------------- /R/load_ipeds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/load_ipeds.R -------------------------------------------------------------------------------- /R/mapIPEDSFields.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/mapIPEDSFields.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/package.R -------------------------------------------------------------------------------- /R/recode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/recode.R -------------------------------------------------------------------------------- /R/url_exists.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/R/url_exists.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/surveys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/data-raw/surveys.csv -------------------------------------------------------------------------------- /data/cipcodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/data/cipcodes.csv -------------------------------------------------------------------------------- /data/crosswalk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/data/crosswalk.csv -------------------------------------------------------------------------------- /data/surveys.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/data/surveys.rda -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/Gender.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/demo/Gender.R -------------------------------------------------------------------------------- /demo/Retention.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/demo/Retention.r -------------------------------------------------------------------------------- /demo/SATretention.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/demo/SATretention.r -------------------------------------------------------------------------------- /demo/ipeds2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/demo/ipeds2.R -------------------------------------------------------------------------------- /ipeds.dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/ipeds.dev.R -------------------------------------------------------------------------------- /man/available_ipeds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/available_ipeds.Rd -------------------------------------------------------------------------------- /man/cipcodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/cipcodes.Rd -------------------------------------------------------------------------------- /man/crosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/crosswalk.Rd -------------------------------------------------------------------------------- /man/downloadAllSurveys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/downloadAllSurveys.Rd -------------------------------------------------------------------------------- /man/downloadHelp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/downloadHelp.Rd -------------------------------------------------------------------------------- /man/downloadIPEDSSurvey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/downloadIPEDSSurvey.Rd -------------------------------------------------------------------------------- /man/download_ipeds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/download_ipeds.Rd -------------------------------------------------------------------------------- /man/formatYear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/formatYear.Rd -------------------------------------------------------------------------------- /man/getIPEDSDownloadDirectory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/getIPEDSDownloadDirectory.Rd -------------------------------------------------------------------------------- /man/getIPEDSSurvey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/getIPEDSSurvey.Rd -------------------------------------------------------------------------------- /man/getYearString.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/getYearString.Rd -------------------------------------------------------------------------------- /man/ipeds-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/ipeds-package.Rd -------------------------------------------------------------------------------- /man/ipedsHelp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/ipedsHelp.Rd -------------------------------------------------------------------------------- /man/ipeds_help.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/ipeds_help.Rd -------------------------------------------------------------------------------- /man/ipeds_survey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/ipeds_survey.Rd -------------------------------------------------------------------------------- /man/load_ipeds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/load_ipeds.Rd -------------------------------------------------------------------------------- /man/mapIPEDSFields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/mapIPEDSFields.Rd -------------------------------------------------------------------------------- /man/recodeAwardLevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeAwardLevel.Rd -------------------------------------------------------------------------------- /man/recodeControl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeControl.Rd -------------------------------------------------------------------------------- /man/recodeDirectory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeDirectory.Rd -------------------------------------------------------------------------------- /man/recodeGeographicRegion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeGeographicRegion.Rd -------------------------------------------------------------------------------- /man/recodeGraduateOffering.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeGraduateOffering.Rd -------------------------------------------------------------------------------- /man/recodeHighestDegreeOffered.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeHighestDegreeOffered.Rd -------------------------------------------------------------------------------- /man/recodeHighestLevelOfOffering.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeHighestLevelOfOffering.Rd -------------------------------------------------------------------------------- /man/recodeImputation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeImputation.Rd -------------------------------------------------------------------------------- /man/recodeInstitutionSize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeInstitutionSize.Rd -------------------------------------------------------------------------------- /man/recodeLevelOfInstitution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeLevelOfInstitution.Rd -------------------------------------------------------------------------------- /man/recodeOpenPublic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeOpenPublic.Rd -------------------------------------------------------------------------------- /man/recodeSector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeSector.Rd -------------------------------------------------------------------------------- /man/recodeTitleIVEligibility.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeTitleIVEligibility.Rd -------------------------------------------------------------------------------- /man/recodeTitleIVIndicator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeTitleIVIndicator.Rd -------------------------------------------------------------------------------- /man/recodeUndergraduateOffering.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/recodeUndergraduateOffering.Rd -------------------------------------------------------------------------------- /man/surveys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/surveys.Rd -------------------------------------------------------------------------------- /man/url_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/man/url_exists.Rd -------------------------------------------------------------------------------- /vignettes/ipeds.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbryer/ipeds/HEAD/vignettes/ipeds.Rmd --------------------------------------------------------------------------------