Skip to content

Commit

Permalink
Finished v0.3.0 with good checks and all documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwhiting committed Aug 31, 2021
1 parent 103f858 commit 65c82cf
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 16 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ library(dplyr)
library(tidyr)
```

Load the General Conference corpus, which is a tibble with nested data
for each conference, session, talk, and paragraph.

``` r
data("genconf")
head(genconf)
Expand All @@ -32,6 +35,9 @@ head(genconf)
#> 6 1973 10 <tibble [7 × 4]>
```

Unnest it to analyze individual talks, which can be unnested further to
the paragraph level.

``` r
genconf %>%
unnest(sessions) %>%
Expand All @@ -54,4 +60,5 @@ See [Example
Analysis](https://bryanwhiting.github.io/generalconference/docs/articles/example-analysis.html)
for more examples on how to analyze the data.

See documentation for scrapers
See documentation for scrapers, if you need them. But you shouldn’t need
them since all the data is available.
6 changes: 3 additions & 3 deletions docs/articles/introduction.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 42 additions & 11 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ articles:
how-to-scrape: how-to-scrape.html
introduction: introduction.html
new-sessions: new-sessions.html
last_built: 2021-08-31T05:35Z
last_built: 2021-08-31T05:58Z

0 comments on commit 65c82cf

Please sign in to comment.