R: The premier data analysis and visualization platform - - PowerPoint PPT Presentation

r the premier data analysis and visualization platform
SMART_READER_LITE
LIVE PREVIEW

R: The premier data analysis and visualization platform - - PowerPoint PPT Presentation

R: The premier data analysis and visualization platform https://cran.r-project.org/ R Studio: A nice user interface for R https://www.rstudio.com/products/rstudio/download/ Access R Studio through your web browser 1.


slide-1
SLIDE 1

R: The premier data analysis and visualization platform

https://cran.r-project.org/

slide-2
SLIDE 2

R Studio: A nice user interface for R

https://www.rstudio.com/products/rstudio/download/

slide-3
SLIDE 3

Access R Studio through your web browser

  • 1. https://educcomp01.ccbb.utexas.edu/
  • 2. https://educcomp02.ccbb.utexas.edu/
  • 3. https://educcomp03.ccbb.utexas.edu/
  • 4. https://educcomp04.ccbb.utexas.edu/
slide-4
SLIDE 4

Select RStudio

slide-5
SLIDE 5

Sign in with your UT EID and password

slide-6
SLIDE 6

R Markdown: Writing documents with embedded R code

slide-7
SLIDE 7

R Markdown: Writing documents with embedded R code

slide-8
SLIDE 8

We convert R Markdown to HTML by “knitting” the Markdown file

slide-9
SLIDE 9

Convert to pdf: knit to HTML, open in browser, print, save as pdf

slide-10
SLIDE 10

Convert to pdf: knit to HTML, open in browser, print, save as pdf

slide-11
SLIDE 11

Convert to pdf: knit to HTML, open in browser, print, save as pdf

slide-12
SLIDE 12

Markdown basics

http://rmarkdown.rstudio.com/authoring_basics.html normal text *italics* **bold** # Header 1 ## Header 2 List:

  • 1. Item 1
  • 2. Item 2
  • 3. Item 3
slide-13
SLIDE 13

Markdown basics

Embedded R code will be evaluated and printed ```{r} head(cars) plot(cars$speed, cars$dist) ```