├── .gitignore ├── IntroRTraining.Rproj ├── Intro_markdown.Rmd ├── Intro_markdown.html ├── Intro_markdown.md ├── README.md ├── code_instructor.R ├── code_participant.R ├── renv.lock └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/.gitignore -------------------------------------------------------------------------------- /IntroRTraining.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/IntroRTraining.Rproj -------------------------------------------------------------------------------- /Intro_markdown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/Intro_markdown.Rmd -------------------------------------------------------------------------------- /Intro_markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/Intro_markdown.html -------------------------------------------------------------------------------- /Intro_markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/Intro_markdown.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/README.md -------------------------------------------------------------------------------- /code_instructor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/code_instructor.R -------------------------------------------------------------------------------- /code_participant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/code_participant.R -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/renv.lock -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moj-analytical-services/IntroRTraining/HEAD/requirements.txt --------------------------------------------------------------------------------