pangxueyu233 / R-tricks

Tip and tricks for R

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

R Logo

Tip and tricks for R

Usefull tools

Modern R

There are new ways to use R for data processing workflow, in particular using combination of these packages: dplyr, magrittr, tidyr and ggplot2 (with the cowplot add-on). A few nice tutorial/introductions:

Plotting with R

There is a pretty nice R package to easily produce publication-ready plots with ggplot2 : ggpubr.
In addition, there is a list of color palettes inspired by colors used in scientific journals : vignette.

Tip and tricks

Use Rscript to run R from bash

R comes with Rscript, a command line tool that can run R scripts or R commands directly from the bash shell.

The most compact way to run it is with the -e option containing directly the R expression to evaluate. For example the following command will output 10 random numbers:

Rscript -e 'res=runif(10);cat(res,"\n")'

Of course this is only usefull for very short commands. An alternative is to write a R script, for example if you create a file called test.r containing:

res=runif(10)
cat(res,"\n")

You can run it using Rscript test.r. And even better, if you add an initial shebang line #!/usr/bin/env Rscript in the script above and make it executable with chmod +x test.r, you can directly launch your R script with ./test.r!

Now a common thing to have in scripts is command line parameters. The R function commandArgs() returns the command line arguments as a vector of strings (so you will need to convert them to numeric in some cases). By default the first element of the vector is the name of the Rscript executable, the second if the first argument and so on. Most of the time you won't need it so you should rather use commandArgs(trailingOnly = TRUE) instead (or the compact version commandArgs(T)) to have the first element being the first argument and so on. You can easily check if the command line argument is missing: R puts an NA. For example, our script outputing random numbers will look like this if we want to output 10 numbers by default or to have this number as a command line argument:

#!/usr/bin/env Rscript
N=as.numeric(commandArgs(TRUE)[1])
if (is.na(N)) N=10
res=runif(N)
cat(res,"\n")

You can run it using:

./test.r 5
0.2852298 0.9366892 0.752774 0.4416602 0.9603793 

or

./test.r 
0.3131752 0.3540976 0.07491065 0.125842 0.2947516 0.203168 0.8390772 0.6115891 0.323192 0.783478 

If you have a second argument it way look like:

#!/usr/bin/env Rscript
N1=as.numeric(commandArgs(TRUE)[1])
N2=as.numeric(commandArgs(TRUE)[2])
res1=runif(N1)
res2=rnorm(N2)
cat(res1,"\n")
cat(res2,"\n")

And running:

./test.r 4 8
0.6631743 0.2670673 0.5929007 0.8545739 
-0.6988854 -0.4150706 1.0834 -0.002987133 -2.552233 -0.6456261 0.7652581 0.7687048 

outputs 4 uniform numbers and 8 normally distributed numbers. Note that in this case it's harder to check the presence or absence of arguments.

Also note that funr is an interesting tool providing shell access to all R functions.

Running bash commands from R

Now the opposite: you need to run a bash command from y R script. In this section all commands should be run in R unless specified. The easiest way is to use the system() function:

system('ls -l | wc -l')

By default the system() function returns an error code (0 for success and 127 for failure). If you want to get the result of the command back in a R variable, you can use the intern = TRUE option. In this case it will return a character vector with one string element for each output line. Again, use as.numeric() to transform the output to a number if needed. For example this command will give you the number of files in the current directory in the variable num_files (note that there are easier and cleaner ways of doing that in R directly, that's just a toy example):

num_files=as.numeric(system('ls -l | wc -l',intern = TRUE))

If the output is more than a single line and you want to load it in a data frame, you can use the function pipe() instead of system. For example the following bash command returns the names of the files and their sizes in the current directory:

ls -l | tail -n +2 | awk '{print $9"\t"$5}'

Now in R, you can use read.table and pipe together to call the command and put the result in a data frame file_sizes:

file_sizes=read.table(pipe('ls -l | tail -n +2 | awk \'{print $9"\t"$5}\''))

Note that the ' chars in the bash command need to be escaped with \' in R because the command itself has to be a string in R delimited by '.

Building an argument section for your R script

This is an example of how having a beautiful argument section in the head of your R script, with possible optional arguments

#! /usr/bin/Rscript

## Collect arguments
args <- commandArgs(TRUE)

## Parse arguments (we expect the form --arg=value)
parseArgs <- function(x) strsplit(sub("^--", "", x), "=")
argsL <- as.list(as.character(as.data.frame(do.call("rbind", parseArgs(args)))$V2))
names(argsL) <- as.data.frame(do.call("rbind", parseArgs(args)))$V1
args <- argsL
rm(argsL)

## Give some value to options if not provided 
if(is.null(args$opt_arg1)) {args$opt_arg1="default_option1"}
if(is.null(args$opt_arg2)) {args$opt_arg2="default_option1"} else {args$opt_arg2=as.numeric(args$opt_arg2)}

## Default setting when no all arguments passed or help needed
if("--help" %in% args | is.null(args$arg1) | is.null(args$arg2)) {
  cat("
      The R Script arguments_section.R
      
      Mandatory arguments:
      --arg1=type           - description
      --arg2=type           - description
      --help                - print this text
      
      Optionnal arguments:
      --opt_arg1=String          - example:an absolute path, default:default_option1
      --opt_arg2=Value           - example:a threshold, default:10

      WARNING : here put all the things the user has to know
      
      Example:
      ./arguments_section.R --arg1=~/Documents/ --arg2=10 --opt_arg2=8 \n\n")
  
  q(save="no")
}

cat("first mandatory argument : ", args$arg1,"\n",sep="")
cat("second mandatory argument : ", args$arg2,"\n",sep="")
cat("first optional argument : ", args$opt_arg1,"\n",sep="")
cat("second optional argument : ", args$opt_arg2,"\n",sep="")

Source an R script hosted on github

Once on the webpage of your R script on github, click on raw, and copy the URL from the toolbar. Then use the following code (change the example of the raw web address):

library(RCurl)

script <- getURL("https://raw.githubusercontent.com/tdelhomme/R-tips-tricks/master/Rcode/multiplot.r")

eval(parse(text = script))

About

Tip and tricks for R