- Reading data into R {
read.table()
} - Subsetting vectors {[ind]} and data frames {[row,col]}
- Creating logical tests for variables in your dataset
- Creating new variables
- Binary
- Categorical
- Transforming, e.g. log(), exp(), sqrt()
- Summarizing variables
- Basic statistics, e.g. mean(), sum(), sd()
- One variable by levels of another variable: tapply()
- Basic exploratory plots
You should feel comfortable doing most of the above