R

2026-07-02

The Art of R Programming: A Tour of Statistical Software Design

Chapter 1: Getting Started

mean(abs(rnorm(100)))  # generate 100 N(0,1) variates, take abs, then mean
rnorm(10)

Chapter 2: Vectors

Chapter 3: Matrices and Arrays

Chapter 4: Lists

Chapter 5: Data Frames

Chapter 6: Factors and Tables

Chapter 7: R Programming Structures

Chapter 8: Doing Math and Simulations in R

Chapter 9: Object-Oriented Prgoramming

Chapter 10: Input/Output

Chapter 11: String Manipulation

Chapter 12: Graphics

Chapter 13: Debugging

Chapter 14: Performance Enhancement: Speed and Memory

Chapter 15: Interfacing R to Other Languages

Chapter 16: Parallel R