Chapter 2 Learning R

2.2 Code formatting

This book contains code chunks interspersed with results, plots and explanatory text. Code chunks contain R code that is to be evaluated, and interested readers can copy-paste these lines into the R console to try it out themselves. Each code chunk looks like this:

Terms are colored differently depending on their category - this is mostly aesthetic and can be ignored for the time being. If a code chunk produces any visible output, it is shown in another chunk like so:

## [1] 10

Alternatively, as a figure:

Any text after a # is considered a comment and is ignored when running the code. The content of output chunks is always prefixed with # so that users can just copy-paste sections of code without having to explicitly remove the lines containing the results.

In some chapters, chunks may also be hidden in collapsible boxes. This usually contains code to set up objects for later steps but is otherwise not particularly interesting (e.g., downloading files, formatting data), and so is hidden to avoid distracting the reader.

All chapters will finish with a printout of the session information. This describes the system on which the chapter was compiled and the versions of all packages that were used, which is useful for reproducing old results and diagnosing changes due to package updates.

2.3 Getting help

If you have a question about how a function works, it can often be answered by the function’s documentation. This is accessible by prepending the function name with ?.

More general questions on how to use a package may be answered by the package’s vignette, if it is available. (One aspect of Bioconductor software that distinguishes it from CRAN packages is the required documentation of packages and workflows.)

Beyond the R console, there are myriad online resources to get help. The R for Data Science book has a great section dedicated to looking for help outside of R. For example, Stack Overflow’s R tag is a helpful resource for asking and exploring general R programming questions.

For Bioconductor specifically, the support site contains a question and answer-style support site that is actively updated by both users and package developers. This should generally be the first port of call for questions that are not answered by any existing documentation.

Users can also connect to the Bioconductor community through our Slack group, which hosts various channels dedicated to packages and workflows. The Bioc-community Slack is a great way to stay in the loop on the latest developments happening across Bioconductor, and we recommend exploring the “Channels” section to find topics of interest.

2.4 Beyond the basics

Once comfortable with the basic concepts of the language, we take things to the next level:

  • Advanced R, as its name suggests, goes through some of the more advanced concepts in the language.
  • The aptly named What They Forgot to Teach You About R discusses topics such as file naming, maintaining an R installation, and reproducible analysis habits.
  • The R Inferno dives into many of the unique quirks of R and some of the common user mistakes.
  • Happy Git and Github for the useR, which describes how to use the Git version control system with R.

Over time, you may accumulate a collection of your own functions that you might want to re-use across projects or even share with other people. This can be done easily by creating your own R package. The R Packages book provides a user-friendly guide for doing so; more experienced developers will consult Writing R extensions, the definitive documentation for the R packaging system. Bioconductor itself also provides some educational resources for package development within the Bioconductor context.

Session Info

R version 4.1.0 (2021-05-18)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 20.04.2 LTS

Matrix products: default
BLAS:   /home/biocbuild/bbs-3.13-bioc/R/lib/libRblas.so
LAPACK: /home/biocbuild/bbs-3.13-bioc/R/lib/libRlapack.so

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_US.UTF-8        LC_COLLATE=C              
 [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
 [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] BiocStyle_2.20.0 rebook_1.2.0    

loaded via a namespace (and not attached):
 [1] graph_1.70.0        knitr_1.33          magrittr_2.0.1     
 [4] BiocGenerics_0.38.0 R6_2.5.0            rlang_0.4.11       
 [7] highr_0.9           stringr_1.4.0       tools_4.1.0        
[10] parallel_4.1.0      xfun_0.23           jquerylib_0.1.4    
[13] htmltools_0.5.1.1   CodeDepends_0.6.5   yaml_2.2.1         
[16] digest_0.6.27       bookdown_0.22       dir.expiry_1.0.0   
[19] BiocManager_1.30.15 codetools_0.2-18    sass_0.4.0         
[22] evaluate_0.14       rmarkdown_2.8       stringi_1.6.2      
[25] compiler_4.1.0      bslib_0.2.5.1       filelock_1.0.2     
[28] XML_3.99-0.6        stats4_4.1.0        jsonlite_1.7.2