Skip to content

Commit

Permalink
cleaning up formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
olbeck committed Mar 4, 2024
1 parent b2434f5 commit 92d3b52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vignettes/governance.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ knitr::opts_chunk$set(
)
```

```{r setup}
```{r setup, message=FALSE, warning=F}
library(governance)
library(dplyr)
library(data.table)
```


## 1. Get Input data
## 1. Get Input Data

We assume the user already has the relevant 990 Efile data downloaded. Instructions for downloading the need 990 efile data, see \code{vignette("download-data", package = "goveranance")}.

Expand All @@ -43,7 +43,7 @@ Use the `get_features` function to clean the data and transform it into a featur

```{r}
features_example <- get_features(dat_example)
head(features_example)
head(features_example) %>% data.table()
```


Expand All @@ -53,7 +53,7 @@ Use the `get_scores` function to get the governance scores.

```{r}
scores_example <- get_scores(features_example)
head(scores_example)
head(scores_example) %>% data.table()
```

We can explore our governance scores.
Expand Down

0 comments on commit 92d3b52

Please sign in to comment.