If you have never worked with R, you can get a basic familiarity by going through this free tutorial. Takes about 4 hours.
You can also learn R straight from within R using the swirl package. This doesn’t require internet access except to install the package.
Here is another basic R introduction from ComputerWorld.
When you open RStudio you will see 4 panels:
That should give you a new project.
require(graphics)
## Annette Dobson (1990) "An Introduction to Generalized Linear Models".
## Page 9: Plant Weight Data.
ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
group <- gl(2, 10, 20, labels = c("Ctl","Trt"))
weight <- c(ctl, trt)
lm.D9 <- lm(weight ~ group)
opar <- par(mfrow = c(2,2), oma = c(0, 0, 1.1, 0))
plot(lm.D9, las = 1) # Residuals, Fitted, ...
par(opar)
Read through the following sections of the R for Data Science book and work through the examples.
R for Data Science is a great book to introduce you to working with data in R, but we are not going to be doing that in this workshop.