governance
R package for creating a governance quality index for nonprofits using 990 efile data.
https://github.com/nonprofit-open-data-collective/governance
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 5 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.6%) to scientific vocabulary
Repository
R package for creating a governance quality index for nonprofits using 990 efile data.
Basic Info
- Host: GitHub
- Owner: Nonprofit-Open-Data-Collective
- Language: R
- Default Branch: main
- Homepage: https://nonprofit-open-data-collective.github.io/governance/
- Size: 44.8 MB
Statistics
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 1
Metadata Files
README.md
governance 
R package for creating a nonprofit governance index score using 990 efile data.
Installation
r
devtools::install_github( 'nonprofit-open-data-collective/governance' )
Usage
Step 1: Get Input data
We assume the user already has the relevant 990 Efile data downloaded. See Downlaoding Data Vignette for instructions on downloading the need 990 efile data.
We will use a subset of a test set that was already created. See data-raw/01-get-example-data.Rhere for details on how this data set was created.
```r data("dat_example", package = "governance")
set.seed(57) keeprows <- sample(1:nrow(datexample), 200) datexample <- datexample[keep_rows, ]
```
Step 2: Get Features Matrix
Use the get_features() function to clean the data and transform it into a features matrix.
r
features_example <- get_features(dat_example)
Step 3: Calculate the Scores
Use the get_scores() function to get the governance scores.
r
scores_example <- get_scores(features_example)
Citing the Package:
- Beck, O., & Lecy, J. (2024). Nonprofit governance Package for R. Zenodo. https://doi.org/10.5281/zenodo.10781066
Owner
- Name: Nonprofit Open Data Collective
- Login: Nonprofit-Open-Data-Collective
- Kind: organization
- Repositories: 15
- Profile: https://github.com/Nonprofit-Open-Data-Collective
Citation (CITATION.cff)
cff-version: 1.2.0 title: 'Nonprofit governance Package for R' abstract: "The <code>governance</code> R package generates nonprofit governance scores from policies and practices that are self-reported on the IRS Form 990 (obtained via the 990 efile dataset) in order to measure levels of governance sophistication across nonprofits for benchmarking purposes." authors: - affiliation: Penn State University family-names: Beck given-names: Olivia - affiliation: Arizona State University family-names: Lecy given-names: Jesse orcid: https://orcid.org/0000-0003-4974-0782 date-released: '2024-03-05' doi: 10.5281/zenodo.10781066 license: - cc-by-4.0 repository-code: https://github.com/Nonprofit-Open-Data-Collective/governance type: software version: v1.0.0-beta
GitHub Events
Total
- Issues event: 2
- Issue comment event: 2
- Push event: 2
Last Year
- Issues event: 2
- Issue comment event: 2
- Push event: 2