aaronpeikert / repro-tutorial

https://doi.org/10.3390/psych3040053
Creative Commons Attribution 4.0 International
8 stars 4 forks source link

bookdown and rticles are required for manuscript #247

Open aaronpeikert opened 2 years ago

aaronpeikert commented 2 years ago

They are not required for the repro standard template:

In terminal:

docker run -it --rm rocker/verse:4.0.1 R

Then in terminal in R:

options(
    repos = c(aaronpeikert = 'https://aaronpeikert.r-universe.dev',
    CRAN = 'https://cloud.r-project.org')
)
install.packages('repro')
remove.packages("bookdown")
remove.packages("rticles") # is not there anyway

dir <- tempdir()
repro::use_repro_template(dir)
setwd(dir)
repro::automate()