Displaying 3 results from an estimated 3 matches for "duncantl".
Did you mean:
duncan
2013 Jul 31
1
Adding text comments to graphics device output files?
Hi,
several image file format supports textual/meta data comments in one
way or the other. For me an obvious usage would be to add
sessionInfo() information to PNG and PDF image files, ideally from
within R although external tools would work as well(*). Has anyone
looked into this or have any suggestions or comments?
/Henrik
(*) One could even imagine including self-contained R
2025 Mar 25
2
Patch for RJSONIO
I can never remember where the canonical sources are for the effectively-CRAN
maintained packages so I am dropping it here -- yesterday's update to RJSONIO
does not build on anything older than r-devel. This patch helps, feel free
to adjust as needed.
Dirk
diff -ru RJSONIO.orig/src/RJSON.c RJSONIO/src/RJSON.c
--- RJSONIO.orig/src/RJSON.c 2025-03-24 02:10:08.000000000 -0500
+++
2018 Jan 03
3
Coping with non-standard evaluation in R program analysis
Hello R experts,
I plan to develop a tool for dynamic analysis of R programs. I would like to trace function calls at runtime, capturing argument and return values. Following a suggestion made some time ago on this list, my high-level implementation strategy is to rewrite the AST, augmenting call expressions with pre-call and post-call shims to capture the arguments and return value,