Skip to content

Commit

Permalink
Add comments to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdnbradford committed Jul 2, 2024
1 parent 6e3d8b1 commit 4d24ca0
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ Character vectors of individual works can be accessed in several ways:
cthulhu <- lovecraftr::the_call_of_cthulhu
head(cthulhu)

[1] "THE CALL OF CTHULHU"
[2] ""
[3] "Of such great powers or beings there may be conceivably a survival...a survival"
[4] "of a hugely remote period when...consciousness was manifested, perhaps, in"
[5] "shapes and forms long since withdrawn before the tide of advancing"
[6] "humanity...forms of which poetry and legend alone have caught a flying memory"
#> [1] "THE CALL OF CTHULHU"
#> [2] ""
#> [3] "Of such great powers or beings there may be conceivably a survival...a survival"
#> [4] "of a hugely remote period when...consciousness was manifested, perhaps, in"
#> [5] "shapes and forms long since withdrawn before the tide of advancing"
#> [6] "humanity...forms of which poetry and legend alone have caught a flying memory"
```
or
```R
Expand All @@ -37,13 +37,13 @@ corpus |>
dplyr::filter(title == "The Call Of Cthulhu") |>
head()

# A tibble: 6 × 2
title text
<chr> <chr>
1 The Call Of Cthulhu "THE CALL OF CTHULHU"
2 The Call Of Cthulhu ""
3 The Call Of Cthulhu "Of such great powers or beings there may be conceivably …
4 The Call Of Cthulhu "of a hugely remote period when...consciousness was manif
#> # A tibble: 6 × 2
#> title text
#> <chr> <chr>
#> 1 The Call Of Cthulhu "THE CALL OF CTHULHU"
#> 2 The Call Of Cthulhu ""
#> 3 The Call Of Cthulhu "Of such great powers or beings there may be conceivably …
#> 4 The Call Of Cthulhu "of a hugely remote period when...consciousness was manif…
5 The Call Of Cthulhu "shapes and forms long since withdrawn before the tide of…
6 The Call Of Cthulhu "humanity...forms of which poetry and legend alone have c
```
Expand Down

0 comments on commit 4d24ca0

Please sign in to comment.