efficientR
efficientR copied to clipboard
Efficient R programming: a book
Also, I have read the `out-ice.Rds` from [github repo](https://github.com/csgillespie/efficientR/blob/master/extdata/out-ice.Rds) directly using `readr::read_rds()` and then added `readr` package in the prerequisite section of the book.
I noticed in Line 76 of [Chapter 1](https://github.com/csgillespie/efficientR/blob/master/01-introduction.Rmd) the sentence: "It is well known that R code can promote ***algorithmic efficiency*** compared with low level languages for certain tasks, especially...
Code snippet from [1.6.3 Profiling](https://csgillespie.github.io/efficientR/introduction.html#profiling) contains a function `dplyr::rbind_all()` which is no longer supported the current version of [dplyr](https://dplyr.tidyverse.org/index.html) package. ## Code snippet from book ```r library("profvis") profvis(expr = {...
Fixed few little things.
It is not single quote as the text indicates `'+'(1,1)` but rather the backticks, i.e. `` `+`(1,1) ``.
Fixed the Windows path part and added an extra sentence at the end of the section.
I installed the package as describe in section 1.7. When I tried to use the browseVignettes() line, it said no package called efficient. I then tried attaching the package by...
The results in fig 6.1 are missing in the online version of the book. I can reproduce the chart in my own machine though.
in chapter 5, the `co2` dataset did not exist in the `efficient` package. I've also checked the repo of the package but I found nothing.
- in section 2.3.1, ["althogh"](https://github.com/csgillespie/efficientR/blob/6a5b604ebb56610d9c69b871fd0fee261e653d35/02-set-up.Rmd#L132) instead of "although". - in section 6.4.1, ["(\\)"](https://github.com/csgillespie/efficientR/blob/6a5b604ebb56610d9c69b871fd0fee261e653d35/06-data-carpentry.Rmd#L299) instead of "(`)". - in section 5.3, you used [`df_co2_dt`](https://github.com/csgillespie/efficientR/blob/6a5b604ebb56610d9c69b871fd0fee261e653d35/05-input-output.Rmd#L109) variable name for `readr::read_csv()`. - in section...