https://github.com/centre-for-humanities-computing/ludvig
Deliverables for the LUDVIG project - an analysis of the plays of Ludvig Holberg
https://github.com/centre-for-humanities-computing/ludvig
Last synced: 4 months ago
JSON representation
Deliverables for the LUDVIG project - an analysis of the plays of Ludvig Holberg
- Host: GitHub
- URL: https://github.com/centre-for-humanities-computing/ludvig
- Owner: centre-for-humanities-computing
- License: apache-2.0
- Created: 2023-01-17T08:23:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T16:08:15.000Z (over 3 years ago)
- Last Synced: 2025-09-10T00:01:29.356Z (9 months ago)
- Language: HTML
- Size: 4.08 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LUDVIG
Deliverables for the LUDVIG project - an analysis of the plays of Ludvig Holberg.
This is an RStudio project and you need to load the project by either using the "Open Project" menu in RStudio or double kllik on the `LUDGIV.Rproj` project file.
## Needed R packages
When the project is loaded, you can install all package dependencies by running the `setup.R` file either by opening the `setup.R` file in RStudio and selecting Run or in the R console executing
```
> source("setup.R")
```
That script installes these packages:
```
DT
colorspace
dplyr
fs
ggplot2
ggraph
ggthemes
here
igraph
knitr
ndjson
purrr
readr
readxl
tidygraph
tidytext
tidyverse
tvthemes
viridis
xml2
xslt
```
The list is based on the output from this expression:
```
find . -name '*.Rmd' -exec egrep '^library\(' {} \;|sed 's/library(//;s/)//'| sort | uniq > used_packages
```