Description Usage Arguments Value Examples
Function composition, acts like . in Haskell, only limited to two functions.
| 1 | f %.% g
 | 
| f | [function] The outer function. | 
| g | [function] The inner function. | 
[function] Function composed of f and g.
| 1 2 3 | f <- function(x) x+1
g <- function(x) x*2
lapply (1:3, soundcorrs:::'%.%' (f,g))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.