├── .gitattributes ├── .gitignore ├── Chapter 10 └── object-oriented-programming.R ├── Chapter 11 └── working-with-databases.R ├── Chapter 12 └── data-manipulation.R ├── Chapter 13 ├── high-performance-computing.txt ├── my_cumsum1.R ├── rcpp-algo1.cpp ├── rcpp-demo.cpp ├── rcpp-diff-openmp.cpp ├── rcpp-diff.cpp └── rcpp-parallel.cpp ├── Chapter 14 ├── data │ ├── new-products.html │ ├── products.html │ ├── simple-page.html │ ├── simple-products.html │ └── single-table.html └── web-scrapping.R ├── Chapter 15 └── boosting-productivity.R ├── Chapter 2 └── basic-objects.R ├── Chapter 3 └── managing-your-workspace.R ├── Chapter 4 └── basic-expressions.R ├── Chapter 5 └── working-with-basic-objects.R ├── Chapter 6 └── working-with-strings.R ├── Chapter 7 └── working-with-data.R ├── Chapter 8 └── inside-r.R ├── Chapter 9 └── meta-programming.R ├── License └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 10/object-oriented-programming.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 10/object-oriented-programming.R -------------------------------------------------------------------------------- /Chapter 11/working-with-databases.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 11/working-with-databases.R -------------------------------------------------------------------------------- /Chapter 12/data-manipulation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 12/data-manipulation.R -------------------------------------------------------------------------------- /Chapter 13/high-performance-computing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/high-performance-computing.txt -------------------------------------------------------------------------------- /Chapter 13/my_cumsum1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/my_cumsum1.R -------------------------------------------------------------------------------- /Chapter 13/rcpp-algo1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/rcpp-algo1.cpp -------------------------------------------------------------------------------- /Chapter 13/rcpp-demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/rcpp-demo.cpp -------------------------------------------------------------------------------- /Chapter 13/rcpp-diff-openmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/rcpp-diff-openmp.cpp -------------------------------------------------------------------------------- /Chapter 13/rcpp-diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/rcpp-diff.cpp -------------------------------------------------------------------------------- /Chapter 13/rcpp-parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 13/rcpp-parallel.cpp -------------------------------------------------------------------------------- /Chapter 14/data/new-products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 14/data/new-products.html -------------------------------------------------------------------------------- /Chapter 14/data/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 14/data/products.html -------------------------------------------------------------------------------- /Chapter 14/data/simple-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 14/data/simple-page.html -------------------------------------------------------------------------------- /Chapter 14/data/simple-products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 14/data/simple-products.html -------------------------------------------------------------------------------- /Chapter 14/data/single-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 14/data/single-table.html -------------------------------------------------------------------------------- /Chapter 14/web-scrapping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 14/web-scrapping.R -------------------------------------------------------------------------------- /Chapter 15/boosting-productivity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 15/boosting-productivity.R -------------------------------------------------------------------------------- /Chapter 2/basic-objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 2/basic-objects.R -------------------------------------------------------------------------------- /Chapter 3/managing-your-workspace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 3/managing-your-workspace.R -------------------------------------------------------------------------------- /Chapter 4/basic-expressions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 4/basic-expressions.R -------------------------------------------------------------------------------- /Chapter 5/working-with-basic-objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 5/working-with-basic-objects.R -------------------------------------------------------------------------------- /Chapter 6/working-with-strings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 6/working-with-strings.R -------------------------------------------------------------------------------- /Chapter 7/working-with-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 7/working-with-data.R -------------------------------------------------------------------------------- /Chapter 8/inside-r.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 8/inside-r.R -------------------------------------------------------------------------------- /Chapter 9/meta-programming.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/Chapter 9/meta-programming.R -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-R-Programming/HEAD/README.md --------------------------------------------------------------------------------