Best Practices R
theme
If you like vscode theme, use https://github.com/anthonynorth/rscodeio
dev_mode
devtools::dev_mode function switches your version of R into "development mode". This is useful to avoid clobbering the existing versions of CRAN packages that you need for other tasks. Calling dev_mode() again will turn development mode off, and return you to your default library setup.
# This will install the package in the folder C:/Rpackages
devtools::dev_mode(path="C:/Rpackages")Reload the package
devtools::load_all()or Ctrl + Shift + L
Add or update script files
.R files defined in tests\dev\ will be removed from the package and can be used to simulate interaction with the package. See scripts.R
Coding standards
Coding standards are described here
Useful literature
Examples of "good" packages
Examples of packages that can serve as inspiration:
Useful shortcuts
Show all shortcuts:
Alt+Shift+KReload package:
Cmd + Shift + LNavigate to:
Ctrl + .Generate Doc:
Ctrl + Shift + DRun unit tests:
Ctrl + Shift + TNavigate to implementation:
Mouse over + F2orCTRL + Mouse ClickUn-/Comment line/selection:
Ctrl + Shift + CMulti-select:
CTRL+SHIFT+ALT+M
Profiling with R-Studio
Profiling of code can be done within R-Studio with the package profvis, a description of the process is given here. In short, pass the code to be profiled as argument to the function profvis:
profvis({
data(diamonds, package = "ggplot2")
plot(price ~ carat, data = diamonds)
m <- lm(price ~ carat, data = diamonds)
abline(m, col = "red")
})Graphics
Snapshot testing
{ospsuite}uses snapshots to test the behavior of plot functions. Read Introduction to snapshot testing in R for information on how to.Short summary:
The first time a test with snapshot is executed, it creates a snapshot file that will be considered the truth. Therefore it is important to check this file for its validity.
If the behavior of the tested function changes, the test will fail, as the new output will differ from the snapshot.
Run
snapshot_review()to compare the new output with the snapshot.If the new behavior is correct, accept the snapshot by calling
snapshot_accept().
If build fails because of failing snapshot tests, never accept new snapshots without manual review.
Setting up Linux environment for R development
As an example, a Hyper-V Virtual Machine under Windows 10 is used. Currently tested with Ubuntu 19.10
Install Ubuntu
Download Ubuntu from https://ubuntu.com/download/desktop
Tutorial: https://www.youtube.com/watch?v=oyNjjzg-UXo = >This is a very good intro to get ubuntu installed from scratch
Install git
sudo apt install git
Install nuget
sudo apt install nuget
Install R
sudo apt install r-base
Install R Studio
Download R studio from here
Install OSPSuite-R
Last updated