├── .gitignore ├── 1.introduction.Rmd ├── 1.introduction.html ├── 2.dplyr-intro-exercises.Rmd ├── 2.dplyr-intro-live-coding-script.Rmd ├── 2.dplyr-intro-live-coding-script.html ├── 2.dplyr-intro-solutions.Rmd ├── 2.dplyr-intro-solutions.html ├── 3.workflows-exercises.Rmd ├── 3.workflows-live-coding-script.Rmd ├── 3.workflows-live-coding-script.html ├── 3.workflows-solutions.Rmd ├── 3.workflows-solutions.html ├── 4.summarise-and-combine-exercises.Rmd ├── 4.summarise-and-combine-live-coding-script.Rmd ├── 4.summarise-and-combine-live-coding-script.html ├── 4.summarise-and-combine-solutions.Rmd ├── 4.summarise-and-combine-solutions.html ├── Course_Data.zip ├── LICENSE.md ├── README.md ├── clinical-data.txt ├── css └── stylesheet.css ├── description.md ├── diabetes.txt ├── fix_state.R ├── ggplot2-exercises-with-images.Rmd ├── ggplot2-exercises-with-images.html ├── ggplot2-exercises-with-solutions.Rmd ├── ggplot2-exercises-with-solutions.nb.html ├── ggplot2-exercises.Rmd ├── ggplot2-live-coding-script.Rmd ├── ggplot2-live-coding-script.html ├── images ├── R-project.png ├── SidneyHarris_MiracleWeb.jpg ├── Slide1.jpg ├── Slide2.jpg ├── Slide3.jpg ├── arrange.png ├── baseR.png ├── data-cycle.png ├── data-cycle.svg ├── data-science-explore.png ├── dplyr_full_join.png ├── dplyr_inner_join.png ├── dplyr_join.svg ├── dplyr_left_join.png ├── filter.png ├── hadley.jpg ├── hex-dplyr.png ├── hex-ggplot2.png ├── hex-readr.png ├── hex-stringr.png ├── hex-tidyr.png ├── latticeR.png ├── layered-grammar-2.jpg ├── layered-grammar-3.jpg ├── layered-grammar-4.jpg ├── layered-grammar-5.jpg ├── oh-the-horror.png ├── patients-data.png ├── pipe.jpeg ├── plotEitherWay.png ├── plotsinR.jpg ├── r-for-data-science.png ├── rstudio-about.png ├── rstudio-preview.png ├── rstudio-screen.png ├── rstudio-windows.png ├── run-all.png ├── select.png ├── sorting.png ├── spreadsheet-full.png ├── tidy-boxplot.png ├── tidyverse.png ├── tolstoy.jpg ├── university-of-cambridge.png └── xkcd-example.png ├── make_zip.R ├── old_materials ├── 1.introduction.Rmd ├── 1.introduction.html ├── 2.dplyr-intro.Rmd ├── 2.dplyr-intro.nb.html ├── 3.workflows.Rmd ├── 3.workflows.nb.html ├── 4.summarise-and-combine.Rmd ├── 4.summarise-and-combine.nb.html ├── Dockerfile ├── cohort-data.txt ├── example-output.html ├── extra.html ├── fake-data.Rmd ├── gapminder.csv ├── ggplot2-exercises1-images.Rmd ├── ggplot2-exercises1-images.html ├── ggplot2-exercises1.Rmd ├── ggplot2-exercises1.html ├── ggplot2-exercises2-images.Rmd ├── ggplot2-exercises2-images.html ├── ggplot2-exercises2.Rmd ├── ggplot2-exercises2.html ├── ggplot2-solutions1.Rmd ├── ggplot2-solutions1.html ├── ggplot2-solutions2.Rmd ├── ggplot2-solutions2.html ├── ggplot2.Rmd ├── ggplot2.html ├── ggplot2_presentation.Rmd ├── installPackages.R ├── pre_course_check.nb.html ├── software-check.Rmd ├── software-check.html └── xkcd.R ├── patient-data-cleaned.txt ├── patient-data.txt ├── pre_course_check.Rmd └── tidyr-example.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | -------------------------------------------------------------------------------- /1.introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/1.introduction.Rmd -------------------------------------------------------------------------------- /1.introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/1.introduction.html -------------------------------------------------------------------------------- /2.dplyr-intro-exercises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/2.dplyr-intro-exercises.Rmd -------------------------------------------------------------------------------- /2.dplyr-intro-live-coding-script.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/2.dplyr-intro-live-coding-script.Rmd -------------------------------------------------------------------------------- /2.dplyr-intro-live-coding-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/2.dplyr-intro-live-coding-script.html -------------------------------------------------------------------------------- /2.dplyr-intro-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/2.dplyr-intro-solutions.Rmd -------------------------------------------------------------------------------- /2.dplyr-intro-solutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/2.dplyr-intro-solutions.html -------------------------------------------------------------------------------- /3.workflows-exercises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/3.workflows-exercises.Rmd -------------------------------------------------------------------------------- /3.workflows-live-coding-script.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/3.workflows-live-coding-script.Rmd -------------------------------------------------------------------------------- /3.workflows-live-coding-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/3.workflows-live-coding-script.html -------------------------------------------------------------------------------- /3.workflows-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/3.workflows-solutions.Rmd -------------------------------------------------------------------------------- /3.workflows-solutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/3.workflows-solutions.html -------------------------------------------------------------------------------- /4.summarise-and-combine-exercises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/4.summarise-and-combine-exercises.Rmd -------------------------------------------------------------------------------- /4.summarise-and-combine-live-coding-script.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/4.summarise-and-combine-live-coding-script.Rmd -------------------------------------------------------------------------------- /4.summarise-and-combine-live-coding-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/4.summarise-and-combine-live-coding-script.html -------------------------------------------------------------------------------- /4.summarise-and-combine-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/4.summarise-and-combine-solutions.Rmd -------------------------------------------------------------------------------- /4.summarise-and-combine-solutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/4.summarise-and-combine-solutions.html -------------------------------------------------------------------------------- /Course_Data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/Course_Data.zip -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/README.md -------------------------------------------------------------------------------- /clinical-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/clinical-data.txt -------------------------------------------------------------------------------- /css/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/css/stylesheet.css -------------------------------------------------------------------------------- /description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/description.md -------------------------------------------------------------------------------- /diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/diabetes.txt -------------------------------------------------------------------------------- /fix_state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/fix_state.R -------------------------------------------------------------------------------- /ggplot2-exercises-with-images.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-exercises-with-images.Rmd -------------------------------------------------------------------------------- /ggplot2-exercises-with-images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-exercises-with-images.html -------------------------------------------------------------------------------- /ggplot2-exercises-with-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-exercises-with-solutions.Rmd -------------------------------------------------------------------------------- /ggplot2-exercises-with-solutions.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-exercises-with-solutions.nb.html -------------------------------------------------------------------------------- /ggplot2-exercises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-exercises.Rmd -------------------------------------------------------------------------------- /ggplot2-live-coding-script.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-live-coding-script.Rmd -------------------------------------------------------------------------------- /ggplot2-live-coding-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/ggplot2-live-coding-script.html -------------------------------------------------------------------------------- /images/R-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/R-project.png -------------------------------------------------------------------------------- /images/SidneyHarris_MiracleWeb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/SidneyHarris_MiracleWeb.jpg -------------------------------------------------------------------------------- /images/Slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/Slide1.jpg -------------------------------------------------------------------------------- /images/Slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/Slide2.jpg -------------------------------------------------------------------------------- /images/Slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/Slide3.jpg -------------------------------------------------------------------------------- /images/arrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/arrange.png -------------------------------------------------------------------------------- /images/baseR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/baseR.png -------------------------------------------------------------------------------- /images/data-cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/data-cycle.png -------------------------------------------------------------------------------- /images/data-cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/data-cycle.svg -------------------------------------------------------------------------------- /images/data-science-explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/data-science-explore.png -------------------------------------------------------------------------------- /images/dplyr_full_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/dplyr_full_join.png -------------------------------------------------------------------------------- /images/dplyr_inner_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/dplyr_inner_join.png -------------------------------------------------------------------------------- /images/dplyr_join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/dplyr_join.svg -------------------------------------------------------------------------------- /images/dplyr_left_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/dplyr_left_join.png -------------------------------------------------------------------------------- /images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/filter.png -------------------------------------------------------------------------------- /images/hadley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/hadley.jpg -------------------------------------------------------------------------------- /images/hex-dplyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/hex-dplyr.png -------------------------------------------------------------------------------- /images/hex-ggplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/hex-ggplot2.png -------------------------------------------------------------------------------- /images/hex-readr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/hex-readr.png -------------------------------------------------------------------------------- /images/hex-stringr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/hex-stringr.png -------------------------------------------------------------------------------- /images/hex-tidyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/hex-tidyr.png -------------------------------------------------------------------------------- /images/latticeR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/latticeR.png -------------------------------------------------------------------------------- /images/layered-grammar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/layered-grammar-2.jpg -------------------------------------------------------------------------------- /images/layered-grammar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/layered-grammar-3.jpg -------------------------------------------------------------------------------- /images/layered-grammar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/layered-grammar-4.jpg -------------------------------------------------------------------------------- /images/layered-grammar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/layered-grammar-5.jpg -------------------------------------------------------------------------------- /images/oh-the-horror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/oh-the-horror.png -------------------------------------------------------------------------------- /images/patients-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/patients-data.png -------------------------------------------------------------------------------- /images/pipe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/pipe.jpeg -------------------------------------------------------------------------------- /images/plotEitherWay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/plotEitherWay.png -------------------------------------------------------------------------------- /images/plotsinR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/plotsinR.jpg -------------------------------------------------------------------------------- /images/r-for-data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/r-for-data-science.png -------------------------------------------------------------------------------- /images/rstudio-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/rstudio-about.png -------------------------------------------------------------------------------- /images/rstudio-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/rstudio-preview.png -------------------------------------------------------------------------------- /images/rstudio-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/rstudio-screen.png -------------------------------------------------------------------------------- /images/rstudio-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/rstudio-windows.png -------------------------------------------------------------------------------- /images/run-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/run-all.png -------------------------------------------------------------------------------- /images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/select.png -------------------------------------------------------------------------------- /images/sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/sorting.png -------------------------------------------------------------------------------- /images/spreadsheet-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/spreadsheet-full.png -------------------------------------------------------------------------------- /images/tidy-boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/tidy-boxplot.png -------------------------------------------------------------------------------- /images/tidyverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/tidyverse.png -------------------------------------------------------------------------------- /images/tolstoy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/tolstoy.jpg -------------------------------------------------------------------------------- /images/university-of-cambridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/university-of-cambridge.png -------------------------------------------------------------------------------- /images/xkcd-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/images/xkcd-example.png -------------------------------------------------------------------------------- /make_zip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/make_zip.R -------------------------------------------------------------------------------- /old_materials/1.introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/1.introduction.Rmd -------------------------------------------------------------------------------- /old_materials/1.introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/1.introduction.html -------------------------------------------------------------------------------- /old_materials/2.dplyr-intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/2.dplyr-intro.Rmd -------------------------------------------------------------------------------- /old_materials/2.dplyr-intro.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/2.dplyr-intro.nb.html -------------------------------------------------------------------------------- /old_materials/3.workflows.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/3.workflows.Rmd -------------------------------------------------------------------------------- /old_materials/3.workflows.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/3.workflows.nb.html -------------------------------------------------------------------------------- /old_materials/4.summarise-and-combine.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/4.summarise-and-combine.Rmd -------------------------------------------------------------------------------- /old_materials/4.summarise-and-combine.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/4.summarise-and-combine.nb.html -------------------------------------------------------------------------------- /old_materials/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/Dockerfile -------------------------------------------------------------------------------- /old_materials/cohort-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/cohort-data.txt -------------------------------------------------------------------------------- /old_materials/example-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/example-output.html -------------------------------------------------------------------------------- /old_materials/extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/extra.html -------------------------------------------------------------------------------- /old_materials/fake-data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/fake-data.Rmd -------------------------------------------------------------------------------- /old_materials/gapminder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/gapminder.csv -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises1-images.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises1-images.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises1-images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises1-images.html -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises1.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises1.html -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises2-images.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises2-images.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises2-images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises2-images.html -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises2.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2-exercises2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-exercises2.html -------------------------------------------------------------------------------- /old_materials/ggplot2-solutions1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-solutions1.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2-solutions1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-solutions1.html -------------------------------------------------------------------------------- /old_materials/ggplot2-solutions2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-solutions2.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2-solutions2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2-solutions2.html -------------------------------------------------------------------------------- /old_materials/ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2.Rmd -------------------------------------------------------------------------------- /old_materials/ggplot2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2.html -------------------------------------------------------------------------------- /old_materials/ggplot2_presentation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/ggplot2_presentation.Rmd -------------------------------------------------------------------------------- /old_materials/installPackages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/installPackages.R -------------------------------------------------------------------------------- /old_materials/pre_course_check.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/pre_course_check.nb.html -------------------------------------------------------------------------------- /old_materials/software-check.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/software-check.Rmd -------------------------------------------------------------------------------- /old_materials/software-check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/software-check.html -------------------------------------------------------------------------------- /old_materials/xkcd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/old_materials/xkcd.R -------------------------------------------------------------------------------- /patient-data-cleaned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/patient-data-cleaned.txt -------------------------------------------------------------------------------- /patient-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/patient-data.txt -------------------------------------------------------------------------------- /pre_course_check.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/pre_course_check.Rmd -------------------------------------------------------------------------------- /tidyr-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/HEAD/tidyr-example.txt --------------------------------------------------------------------------------