class: center, middle, inverse, title-slide .title[ # Preamble ] .subtitle[ ## SISBID 2024
https://github.com/dicook/SISBID
] .author[ ### Di Cook (
dicook@monash.edu
)
Heike Hofmann (
hhofmann4@unl.edu
)
Susan Vanderplas (
susan.vanderplas@unl.edu
) ] .date[ ### 08/14-16/2024 ] --- class: hide-count <center> <img src="Hello-Di.png" width="80%" /> </center> --- class: hide-count <center> <img src="Hello-Heike.png" width="80%" /> </center> --- class: hide-count <center> <img src="Hello-Susan.png" width="80%" /> </center> --- # Talking to people in the class We will be using breakout rooms throughout the class 4-6 people in each room at the end of the time you will be 'zoomed back' into the main session ... in cases you get disconnected, just log back into the Zoom session and we get you back to your group. <br><br><br><br><br> Let's try this! --- class: inverse middle hide-count # Your turn: meet the class! 🔮 👽 👼 Introduce yourself to the people around you. Find out a little about them: where they come from, why they chose to do the workshop, what sort of data they usually work with, whether they have used R before, and a fun fact!
<i class="fas fa-hand-paper faa-spin animated " data-fa-transform="grow-20 right-200 " style=" color:#B78ED2;"></i>
<i class="fas fa-handshake faa-shake animated " data-fa-transform="grow-20 right-250 " style=" color:#F33816;"></i>
<i class="fas fa-hand-spock faa-wrench animated " data-fa-transform="grow-20 right-300 " style=" color:#0774E4;"></i>
.large[.yellow[You've got 5 minutes - timer is running!]]
−
+
05
:
00
--- # Datavis module logistics Website - https://dicook.github.io/SISBID/ Zoom - We are using zoom for the sessions - sessions will be recorded and links will be made available. - Please remember to mute yourself when you don't speak - In case you are having trouble with bandwidth consider to turn off the camera Asking questions - You can ask questions in Zoom - We are also using slack for questions R cloud setup - R cloud link available from website & slack in case of technical problems --- class: inverse middle # Your turn: Course materials .large[All materials are available from [https://github.com/dicook/SISBID](https://github.com/dicook/SISBID)] - __Download__ `SISBID_day1.zip` (a zip archive) of the workshop files which contains all the code files, Rmarkdown files, and data for day 1 of this workshop. __Unzip the file__. - __Double-click__ `SISBID.Rproj`. The R project helps organise your work over these next few days. ![](projectname.png) --- # What's in the zip? -
.r file of code, one for each module of the course, use this to follow along
- `data` folder containing data sets used in the course - `SISBID.Rproj` for starting RStudio in your course working directory <br><br> .large[
Please run, edit and change the code as we go! Experiment, break and fix.
] --- class: middle **Check your R setup** .orange["If R were an airplane, RStudio would be the airport"] [Julie Lowndes, Openscapes](http://jules32.github.io/resources/RStudio_intro/) <img src="setup.png" width="200%" /> --- # Refresher The three main locations that we will draw packages from are CRAN, Bioconductor and github. From CRAN ``` r install.packages("nullabor") ``` From bioconductor ``` r if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("ggbio") ``` From github repos ``` r remotes::install_github("lindsayrutter/bigPint") ``` --- # List of packages Do you have these packages installed? (Note: this list is from the course website https://dicook.github.io/SISBID/) ``` r # CRAN packages packages <- c("tidyr", "dplyr", "readr", "ggplot2", "stringr", "ggmap", "here", "leaflet", "lubridate", "plotly", "RColorBrewer", "gridExtra", "dichromat", "conflicted", "scales", "broom", "broom.mixed", "lme4", "GGally", "palmerpenguins", "corrgram", "tourr", "htmltools", "ggthemes", "maps", "viridis", "nullabor", "splitstackshape", "forecast", "readxl", "MASS", "datasauRus", "cranlogs", "gapminder", "shiny", "shinydashboard", "learnr", "ggmosaic", "gganimate", "remotes", "mapproj") install.packages(packages, dep=TRUE, repos = "https://cloud.r-project.org/") # github packages remotes::install_github("lindsayrutter/bigPint") remotes::install_github("wmurphyrd/fiftystater") remotes::install_github("heike/vinference") remotes::install_github("hollylkirk/ochRe") # For sharing web apps, # but you need adminstrator rights to your computer: install.packages("rsconnect") ``` --- # Resources - [posit cheatsheets](https://posit.co/resources/cheatsheets/) - Q/A site: [http://stackoverflow.com](http://stackoverflow.com) --- # Share and share alike Materials for this workshop build on slides provided by several people, but primarily Hadley Wickham and Carson Sievert. <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.