forked from AlisonLanski/IPEDSuploadables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
66 lines (45 loc) · 2.17 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# IPEDSuploadables
<!-- badges: start -->
<!-- badges: end -->
IPEDSuploadables produces text files in key-value format which meet the IPEDS requirements for upload on their website. By using this package, institutions can avoid the time and risk of manually typing numbers into web forms across multiple screen. Package documentation (see the [website](https://alisonlanski.github.io/IPEDSuploadables/)) describes how an institution's data must be formatted to make use of these scripts.
## Supported Reports
*As reports are added, this list will be updated.
You are welcome to fork this repo and work towards new reports or new institution-types for existing reports*
### Surveys that work for all institutions:
- Completions
- Outcome Measures
### Surveys that only work for some institutions:
- Graduation Rates: 4-year institutions
- 200% Graduation Rates: 4-year institutions
- 12-month Enrollment: 4-year degree granting institutions
- Fall Enrollment: 4-year degree granting institutions
- Human Resources: degree granting institutions with more than 15 FTE
*Note: the package now contains assistance to convert a report-ready dataframe into a key-value pair text file.
This feature can be used for non-supported reports or for non-IPEDS key-value reporting*
## Website
View the pkgdown version of this site and documentation at [https://alisonlanski.github.io/IPEDSuploadables/](https://alisonlanski.github.io/IPEDSuploadables/)
## Installation
You can install the development version from [GitHub](https://github.com/AlisonLanski/IPEDSuploadables) with:
``` r
# install.packages("devtools")
devtools::install_github("AlisonLanski/IPEDSuploadables")
#or use
# install.packages("githubinstall")
githubinstall::install_github("AlisonLanski/IPEDSuploadables")
```
To access vignettes locally (instead of through the website) add an argument:
```r
devtools::install_github("AlisonLanski/IPEDSuploadables", build_vignettes = TRUE)
```