├── .gitignore ├── LICENSE ├── R in Action.pdf ├── README.md ├── part1 ├── code │ ├── aSimpleExample.R │ ├── advancedDataManagement.R │ ├── basicDataManagement.R │ ├── basicDataManagement2.R │ ├── infant_age_weight.R │ ├── saveTwoGraphs.R │ ├── script1.R │ ├── script2.R │ ├── script3.R │ ├── sink.R │ └── variable.R └── notes.md └── part2 └── notes.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/LICENSE -------------------------------------------------------------------------------- /R in Action.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/R in Action.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/README.md -------------------------------------------------------------------------------- /part1/code/aSimpleExample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/aSimpleExample.R -------------------------------------------------------------------------------- /part1/code/advancedDataManagement.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/advancedDataManagement.R -------------------------------------------------------------------------------- /part1/code/basicDataManagement.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/basicDataManagement.R -------------------------------------------------------------------------------- /part1/code/basicDataManagement2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/basicDataManagement2.R -------------------------------------------------------------------------------- /part1/code/infant_age_weight.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/infant_age_weight.R -------------------------------------------------------------------------------- /part1/code/saveTwoGraphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/saveTwoGraphs.R -------------------------------------------------------------------------------- /part1/code/script1.R: -------------------------------------------------------------------------------- 1 | x <- c(1,3,4,5,7,10) 2 | mean(x) 3 | sd(x) -------------------------------------------------------------------------------- /part1/code/script2.R: -------------------------------------------------------------------------------- 1 | y <- c(1,3,4,5,7,10) 2 | summary(y) 3 | hist(y) -------------------------------------------------------------------------------- /part1/code/script3.R: -------------------------------------------------------------------------------- 1 | z <- c(1,3,4,5,7,10) 2 | summary(z) 3 | hist(z) -------------------------------------------------------------------------------- /part1/code/sink.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/sink.R -------------------------------------------------------------------------------- /part1/code/variable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/code/variable.R -------------------------------------------------------------------------------- /part1/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part1/notes.md -------------------------------------------------------------------------------- /part2/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jincheng9/R-in-Action/HEAD/part2/notes.md --------------------------------------------------------------------------------