Blog.rstudio.com – R Markdown
Nate Silver’s FiveThirtyEight
Revolutions
The R Graph Gallery
RStudio Cheatsheets
The Analysis Factor
Data Science Central
RStudio Blog
What is the difference between the with() and within() functions?
The with() function evaluates an R expression on one or more variables of a data frame and outputs the result without modifying the data frame. The within() function evaluates an R expression on one or more variables of a data frame, modifies the data frame, and outputs the result. Below we can see how these functions work using a sample data frame as an example: Output: