class: center, middle, inverse, title-slide .title[ # Getting started with R and RStudio ] .author[ ### Mikhail Dozmorov ] .institute[ ### Virginia Commonwealth University ] .date[ ### 08-23-2023 ] --- ## R history - Elegant, object-oriented programming language. - Started by Robert Gentleman and Ross Ihaka (hence `R`) in 1995 as a free, independent, open-source implementation of the `S` programming language. - Currently, maintained by the R Core development team. - An extremely powerful language for statistical modeling, machine learning, data manipulation, and visualization. - Efficient data analysis. - Intuitive operations on vectors, matrices lists. - Very sophisticated graphs and data displays. <img src="https://www.r-project.org/Rlogo.png" height=100> --- ## More R history .small[ - 1992: R development begins as a research project in Auckland, NZ by Robert Gentleman and Ross Ihaka - 1993: First binary versions of R published at Statlib - 1995: R first distributed as open-source software, under GPL2 license - 1997: R core group formed - 1997: CRAN founded (by Kurt Jornik and Fritz Leisch) - 1999: The R website, r-project.org, founded - 1999: First in-person meeting of R Core team, at inaugural Directions in Statistical Computing conference, Vienna - 2000: R 1.0.0 released (February 29) - 2000: John Chambers, recipient of the 1998 ACM Software Systems Award for the S language, joins R Core - 2001: R News founded (later to become the R Journal) - 2003: R Foundation founded - 2004: First UseR! conference (in Vienna) - 2004: R 2.0.0 released - 2009: First edition of the R Journal - 2013: R 3.0.0 released - 2015: R Consortium founded, with R Foundation participation - 2016: New R logo adopted - 2020: R 4.0.0 released https://blog.revolutionanalytics.com/2017/10/updated-history-of-r.html ] --- ## Organizations behind R - **The R project**, https://www.r-project.org/ - R source code contributors: https://www.r-project.org/contributors.html - **Comprehensive R Archive Network (CRAN)**, https://cran.r-project.org/ - Download and install R - **RStudio**, https://posit.co/ - Download RStudio: https://posit.co/products/open-source/rstudio/ - **Bioconductor**, https://bioconductor.org/ --- ## Bioconductor "Is an open source and open development software project to provide tools for the analysis and comprehension of genomic data." **Goals** - To provide widespread access to a broad range of powerful statistical and graphical methods for the analysis of genomic data. - To provide a common software platform that enables the rapid development and deployment of extensible, scalable, and interoperable software. - To further scientific understanding by producing high-quality documentation and reproducible research. - To train researchers on computational and statistical methods for the analysis of genomic data. --- ## Advantages and disadvantages of `R` - Free and easy to install. - Highly extensible through packages, collections of functions, data, and documentation. - Active developer community. - Anyone can contribute. - Some learning curve. - No centralized support. - Less consistency in function/variable naming and structure. --- ## Install/update R - Installation for Windows, Mac, and Linux is available. - New version of R is released every 6 month, typically around April/October. - Bioconductor updates follow shortly thereafter. - Use `installr` R package to cleanly update R on Windows. .center[<img src="img/RCRAN.png" height=180 >] .small[ https://cran.r-project.org/, https://CRAN.R-project.org/package=installr ] --- ## Run R .pull-left[ - Command line. Type `R` and enter the R prompt. - Type `R CMD` to see the list of available commands. - Type `Rscript` to see how you can run R commands and scripts from the command line. E.g., `Rscript -e 'print("Hello, world!")'`. - R console, installs with R. ] .pull-right[<img src="img/RConsole.png" height=350 > ] - RStudio. Integrated development environment for basic and advanced R operations. --- ## RStudio * RStudio is a program that allows you to run R in a more user-friendly environment * RStudio offers some GUI (graphical user interface) features for R * RStudio is a very flexible IDE (Integrated development environment) * The same R program is running underneath the interface * RStudio is open-source software (and therefore is free) * Available for download at: https://posit.co/ <img src="https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo.png" height=100> --- ## Why RStudio - Project-centric work - scripts and data are organized in one folder (project), easily accessible - Single workspace with four (rearrangeable, zoomable) panels - Work on multiple projects simultaneously in several instances of RStudio - Work on multiple (types of) scripts - See all variables in R environment, easily visualize them - Easy access to help, plots, packages - Simple integration with Git version control system - **After you install R and RStudio, you only need to run RStudio** --- ## RStudio main window .center[<img src="img/RStudioConsole.png" height=600 >] --- ## R Console .center[<img src="img/RStudioConsole2.png" height=600 >] --- ## Create/open new script or other file .center[<img src="img/RStudioConsole3.png" height=600 >] --- ## Open an existing script: .center[<img src="img/RStudioConsole4.png" height=600 >] --- ## Rearrangeable tabbed interface .center[<img src="img/RStudioConsole5.png" height=600 >] --- ## History of commands .center[<img src="img/RStudioConsole6.png" height=600 >] --- ## Environment tab .center[<img src="img/RStudioConsole7.png" height=600 >] --- ## Plots tab .center[<img src="img/RStudioConsole8.png" height=600 >] --- ## RStudio keyboard shortcuts - Command (Ctrl) + Enter - Run current line/selection, go to the next line - Alt + Enter - Run current line/selection, stay on the current line - Ctrl + 1 - Move cursor to source - Ctrl + 2 - Move cursor to console - Ctrl + L - Clear console - Ctrl + Alt + I - Create new code chunk - Ctrl + Alt + c - Run current code chunk - All the usual - Ctrl + Z, C, X, V, S, O See more via menu "Help -> Keyboard Shortcuts Help", "Help -> Cheatsheets" .small[https://support.posit.co/hc/en-us/articles/200711853-Keyboard-Shortcuts] --- ## RStudio settings - Set to "Never" the 'Save workspace to .RData on exit' option and uncheck the 'Restore .RData into workspace at startup' option in "Tools/Global Options/General". .center[<img src="img/rstudio_options.png" height=500 >] --- ## RStudio settings - In "Tools/Global Options/Code", check 'Enable code snippets', look what snippets are available and add your own. In the "Completion" tab, set completion delay to 0ms. .center[<img src="img/rstudio_snippets.png" height=500 >] --- ## RStudio settings - In the "Saving" tab, set 'UTF-8' as default text encoding, to avoid character encoding issue between Windows and other operating systems. .center[<img src="img/rstudio_encoding.png" height=500 >] --- ## RStudio is more than IDE Posit develops many now-gold-standard R packages - `tidyverse` - R packages for data science, including ggplot2, dplyr, tidyr, and purrr - `shiny` - An interactive web technology - `rmarkdown` - Insert R code into markdown documents. `Quarto` is the next generation publishing system - `knitr` - Dynamic reports combining R, TeX, Markdown & HTML - `tensorflow` - open-source software library for Machine Intelligence - `reticulate` - provides a comprehensive set of packages for working with Python - `devtools` - Package development tool --- ## Posit cloud .pull-left[ **Getting started locally** - Install R - Install RStudio - Install packages (`rmarkdown`, `tidyverse`) - Load packages - Install Git ... ] .pull-right[ **Getting started online** - Go to https://posit.cloud/ - Register or log-in with Google, GitHub (recommended) accounts ] --- ## Posit cloud .center[<img src="img/positcloud.png" width=600 >] - An online, cloud-based instance of RStudio IDE, accessible via a web browser. - No hardware requirements or software setup requirements from the user's side. - Share projects with specific people or anyone. - Import projects from GitHub. - Free plan is always available (up to 15 projects, 1 shared space, 15 project-hours per month, up to 1Gb RAM and 1 CPU per project). .small[ https://posit.cloud/ ]