Skip to content

Commit

Permalink
fix rstudio lastest version
Browse files Browse the repository at this point in the history
  • Loading branch information
jtr13 authored Oct 3, 2019
1 parent 3f1d255 commit 1653a14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions basics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ r_latest_version <- xml2::read_html("https://cran.r-project.org/bin/macosx/") %>

rstudio_latest_version <-
xml2::read_html("https://www.rstudio.com/products/rstudio/download/") %>%
rvest::html_node("h4") %>%
rvest::html_node("h3") %>%
rvest::html_text() %>%
stringr::str_extract_all("[0-9].") %>%
unlist() %>%
paste(collapse = "")
```


1. [Install R](https://r4ds.had.co.nz/introduction.html#r2){target="_blank"} (*r4ds*) -- You need to have this installed but you won't open the application since you'll be working in RStudio. If you already installed R, make sure you're current! The latest version of R is `r r_latest_version`. (You will have to reinstall packages after updating; think of it as good housekeeping.)
1. [Install R](https://r4ds.had.co.nz/introduction.html#r2){target="_blank"} (*r4ds*) -- You need to have this installed but you won't open the application since you'll be working in RStudio. If you already installed R, make sure you're current! The latest version of R (as of `r Sys.Date()` is `r r_latest_version`. (You will have to reinstall packages after updating; think of it as good housekeeping.)

2. [Install RStudio](https://r4ds.had.co.nz/introduction.html#rstudio3){target="_blank"} (*r4ds*) -- Download the free, Desktop version for your OS. Working in this IDE will make working in R much more enjoyable. As with R, stay current. RStudio is constantly adding new features. The latest version is `r rstudio_latest_version`.
2. [Install RStudio](https://r4ds.had.co.nz/introduction.html#rstudio3){target="_blank"} (*r4ds*) -- Download the free, Desktop version for your OS. Working in this IDE will make working in R much more enjoyable. As with R, stay current. RStudio is constantly adding new features. The latest version (as of `r Sys.Date()`) is `r rstudio_latest_version`.

3. [Get comfortable with RStudio](https://b-rodrigues.github.io/modern_R/getting-to-know-rstudio.html){target="_blank"} -- In this chapter of Bruno Rodriguez's *Modern R with the Tidyverse*, you'll learn about panes, options, getting help, keyboard shortcuts, projects, add-ins, and packages. Be sure to try out:

Expand Down

0 comments on commit 1653a14

Please sign in to comment.