From 4d24ca034c608c638b654b250eb98b0fec26eaf8 Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Tue, 2 Jul 2024 18:07:30 -0400 Subject: [PATCH] Add comments to examples --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 48c512d..e0c251d 100644 --- a/README.md +++ b/README.md @@ -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 @@ -37,13 +37,13 @@ corpus |> dplyr::filter(title == "The Call Of Cthulhu") |> head() -# A tibble: 6 × 2 - title text - -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 +#> +#> 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… ```