Tags: mattadams/Rtcl
Tags
Release v1.2 with changes from Christian Wener's update to Rtcl for the Androwish project including runtime linking of the main R shared library and general fixes for cross-platform compatibility. This release also cleans-up error messages passed from R through the Tcl interface for easier error handling (error messages will be returned in a single line and consecutive whitespace will be replaced with a single space).
Rtcl 1.1 update release adds -verbose switch to all Rtcl commands. This update adds optional -verbose switch to all Rtcl commands. Presence of -verbose causes embedded R interpreter to print the results of R expressions to stdout as they are evaluated. This may be used to debug the results of R expressons as Rtcl commands are run (see Rtcl man page). This was the default in 1.0 however R's stdout messages are not used by Rtcl and caused excessive output to stdout. Based on patch and suggestion provided by Dr. Luc Moulinier <luc.moulinier@unistra.fr>. Changes include: - New optional -verbose switch to all Rtcl commands - Updated man page and README Signed-off-by: Matt Adams <matt.adams@radicaldynamic.com>
Initial commit of Rtcl 1.0. Based on Rtcl 0.3 by Neil McKay. This version of Rtcl has been updated to work with Tcl 8.6.8 and embeds R 3.4.4 as per the current R manual "Writing R Extensions." It has also been repacked using the latest Tcl TEA package layout. Currently being developed on FreeBSD 11.1 amd64. Changes include: - New namespace ::rtcl - New "source" command equivalent to R's native method - Renames commands "getval" and "type" to "getvalue" and "gettype", respectively - Errors now passed through calling Tcl interpreter vs. static interp - New unit tests via tcltest - New R detection scheme in configure.ac - Updated man page, README, etc.