search for: symbol_function_call

Displaying 4 results from an estimated 4 matches for "symbol_function_call".

2020 Jan 15
4
A bug understanding F relative to FALSE?
...table? identical(F,FALSE) ## [1] TRUE utils::getParseData(parse(text = "c(F,FALSE)", keep.so=rce = TRUE)) ## line1 col1 line2 col2 id parent token terminal text ## 14 1 1 1 10 14 0 expr FALSE ## 1 1 1 1 1 1 3 SYMBOL_FUNCTION_CALL TRUE c ## 3 1 1 1 1 3 14 expr FALSE ## 2 1 2 1 2 2 14 '(' TRUE ( ## 4 1 3 1 3 4 6 SYMBOL TRUE F ## 6 1 3 1 3 6 14 expr...
2013 Jan 14
1
Issue with getParserData in R3.0.0
...:numeric) > getParseData(parse(text=text)) line1 col1 line2 col2 id parent token terminal text 27 1 1 1 42 27 0 expr FALSE 14 1 1 1 13 14 27 expr FALSE 1 1 1 1 7 1 3 SYMBOL_FUNCTION_CALL TRUE abs_max 3 1 1 1 7 3 14 expr FALSE 2 1 8 1 8 2 14 '(' TRUE ( 4 1 9 1 9 4 6 SYMBOL TRUE a ... The RUnit call from the command line is runTest...
2020 Jan 17
0
A bug understanding F relative to FALSE?
...## [1] TRUE > > utils::getParseData(parse(text = "c(F,FALSE)", keep.so=rce = TRUE)) > > ## line1 col1 line2 col2 id parent token terminal text > ## 14 1 1 1 10 14 0 expr FALSE > ## 1 1 1 1 1 1 3 SYMBOL_FUNCTION_CALL TRUE c > ## 3 1 1 1 1 3 14 expr FALSE > ## 2 1 2 1 2 2 14 '(' TRUE ( > ## 4 1 3 1 3 4 6 SYMBOL TRUE F > ## 6 1 3 1 3 6 14...
2009 Jul 23
1
Network from package functions
Dear R-helpers, does anyone know of some package/function that can build a network from the functions that are implemented in a package, i.e. visualize the cross-references from one function to another in the same or some dependent package? An example would be a function like 'nls' on top of the hierarchy and then a network of nodes from the functions that are called within 'nls'