listSavedNlStats: List saved nlStats

Description Usage Arguments Value Examples

View source: R/stats.R

Description

List saved nlStats

Usage

1
listSavedNlStats(nlStatNames = NULL, detail = FALSE)

Arguments

nlStatNames

character The signatures of the nlStats to retrieve

detail

logical Whether to print out the whole saved nlStat including the signature, body, arguments and hash

Value

list A list of lists representing the saved nlStats

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
listSavedNlStats("sum()")

#returns
#"sum()"


listSavedNlStats("sum()", detail = TRUE)

#returns
#$`sum()`
#$`sum()`$nlStatBody
#function (..., na.rm = FALSE)  .Primitive("sum")
#
#$`sum()`$nlStatArgs
#[1] ""
#
#$`sum()`$nlStatHash
#[1] "f0fbe35d81578311ba8f362137832e779b7b4f39"

chrisvwn/Rnightlights documentation built on Sept. 7, 2021, 1:44 a.m.