Description Usage Arguments Value Examples
Get the signature of an nlStat i.e. the nlStat function with all arguments passed in by the user. Used to uniquely identify an nlStat function call i.e. the same function called with different arguments results in a different signature
1 |
nlStat |
character The name of an nlStat |
named character The signature of the nlStat
1 2 3 4 5 6 7 8 9 10 11 | nlStat <- list("sum")
nlSig <- Rnightlights:::nlStatSignature(nlStat)
#returns "sum()"
nlStat <- list("sum", "na.rm=TRUE")
nlSig <- Rnightlights:::nlStatSignature(nlStat)
#returns "sum(na.rm=TRUE)"
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.