The lovecraftr package offers a collection of H.P. Lovecraft's most renowned stories, formatted for easy access and text analysis. This package is intended for literary study, text analysis, and exploration of Lovecraft’s unique themes and style within the horror genre.
To install the development version of lovecraftr from GitHub, follow these steps:
### First install the "devtools" package
install.packages("devtools")
### Then install the lovecraftr package
devtools::install_github("SergejRuff/lovecraftr")
The unearth_lovecraftian_tales()
function provides a dataframe containing all available Lovecraft story titles along with their corresponding abbreviations.
By default, calling unearth_lovecraftian_tales()
returns the complete list of titles and abbreviations within the package.
To retrieve the text of a specific story, you can provide either the full title, e.g., unearth_lovecraftian_tales("At the Mountains of Madness")
, or the abbreviation, e.g., unearth_lovecraftian_tales("MM")
.
List of Stories Included in the lovecraftr Package:
- At the Mountains of Madness (abbreviation: "MM")
- Azathoth (abbreviation: "AZA")
- Beyond the Wall of Sleep (abbreviation: "BWS")
- Celephais (abbreviation: "C")
- Cool Air (abbreviation: "air")
- Dagon (abbreviation: "D")
- He (abbreviation: "HE")
- Herbert West—Reanimator (abbreviation: "HWR")
- The Alchemist (abbreviation: "ALC")
- The Beast in the Cave (abbreviation: "BIC")
- The Book (abbreviation: "book")
- The Call of Cthulhu (abbreviation: "CC")
- The Case of Charles Dexter Ward (abbreviation: "CDW")
- The Cats of Ulthar (abbreviation: "cat")
- The Colour Out of Space (abbreviation: "CS")
- The Descendant (abbreviation: "DE")
- The Doom That Came to Sarnath (abbreviation: "DS")
- The Dreams in the Witch House (abbreviation: "DWH")
- The Dream-Quest of Unknown Kadath (abbreviation: "DQ")
- The Dunwich Horror (abbreviation: "DW")
- The Festival (abbreviation: "FE")
- The Haunter of the Dark (abbreviation: "haunter")
- The Horror at Red Hook (abbreviation: "RH")
- The Hound (abbreviation: "H")
- The Lurking Fear (abbreviation: "LURK")
- The Music of Erich Zann (abbreviation: "MEZ")
- The Nameless City (abbreviation: "NC")
- The Outsider (abbreviation: "O")
- The Quest of Iranon (abbreviation: "IRA")
- The Shadow out of Time (abbreviation: "SOT")
- The Shadow over Innsmouth (abbreviation: "SOI")
- The Shunned House (abbreviation: "TSH")
- The Silver Key (abbreviation: "key")
- The Temple (abbreviation: "TE")
- The Thing on the Doorstep (abbreviation: "door")
- Writings in the United Amateur (abbreviation: "WUA")
When utilizing lovecraftr in your research or software development, kindly reference the R package using the citation obtained from the citation()
function:
### Citation function
citation("lovecraftr")
#> To cite package ‘lovecraftr’ in publications use:
#>
#> Ruff S (2024). _lovecraftr: A Collection of Lovecraftian Tales and Texts_. R package version 1.0.0,
#> <https://github.com/SergejRuff/lovecraftr>.
#> A BibTeX entry for LaTeX users is
#> @Manual{,
#> title = {lovecraftr: A Collection of Lovecraftian Tales and Texts},
#> author = {Sergej Ruff},
#> url = {https://github.com/SergejRuff/lovecraftr},
#> year = {2024},
#> note = {R package version 1.0.0},
#> }