Chapter 1 explains the bigger picture of using R and looks at some of the features that make R unique.
For example, R allows you to perform multiple calculations on vectors, without using loops (as you find in most other programming languages).
## Performing multiple calculations with vectors x <- 1:5 x x + 2 x + 6:10 x |
Leave a Reply