Giter Site home page Giter Site logo

r-intro-mini-workshop's Introduction

R-Intro-mini-workshop (August 26 - 27, 2023)

Access videos here: https://drive.google.com/drive/folders/1U3OeEH1yAkct97Jc0aRGJKxBqAzvK5jp?usp=sharing


Installing R, R studio, and Packages

Please follow the instructions below to install R, R studio, and some packages on your computer prior to the workshop.

This will save us time during the workshop :)

Thank you

  1. Download and install R from here: https://cran.rstudio.com/

  2. Download RStudio here: https://posit.co/download/rstudio-desktop/

Watch these videos for additional guidance:

Windows: https://www.youtube.com/watch?v=YrEe2TLr3MI

Mac: https://www.youtube.com/watch?v=JqV-USGR6AA

Linux: https://www.youtube.com/watch?v=HEDhbgOEm8o


Install some packages

Please copy, paste, and run the code below in your installed R studio.

We'll briefly walk through what each line mean during the workshop :)

packages <- c("tidyverse", "tidymodels", "tibble", "ggrepel","corrplot", "readxl", "ggpubr", "stringr", "dslabs",
              "ggcorrplot","viridis", "ggsci", "reshape2", "pheatmap", "patchwork", "emmeans",  "mlbench")
new_packages <- packages[!(packages %in% installed.packages()[,"Package"])]
if(length(new_packages)) install.packages(new_packages)

all_packages <- c("tidyverse", "tidymodels", "tibble", "ggrepel","corrplot", "readxl", "ggpubr",  "stringr", "dslabs",
              "ggcorrplot", "viridis", "ggsci", "reshape2", "pheatmap", "patchwork", "emmeans", "mlbench")

if(sum(!(all_packages %in% installed.packages()[, "Package"]))) {
  stop("Not all required packages are installed!")
} else {
  message("Everything is set up correctly. You are ready for the workshop!")
}

r-intro-mini-workshop's People

Contributors

ebenasiedu avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.