[Rd] Update local320.zip to local323.zip in R-admin

2016-01-31 Thread Adrian Waddell
In section 3.1.2 of R-admin https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Getting-the-source-files the fille name local320.zip seems to be outdated and probably should be replaced with local323.zip. Greetings, Adrian __ R-devel@r-proj

Re: [Rd] Link R with Tcl 8.6 on Windows

2015-09-28 Thread Adrian Waddell
y of copying and renaming the dlls. So far, ActiveTcl 8.6 works well. Adrian On 2015-09-28 07:36 PM, Adrian Waddell wrote: Dear all, I am working on an R package intended for CRAN that requires Tcl version 8.6 because of the TclOO tcl extension and the -angle option for canvas text items. R for

[Rd] Link R with Tcl 8.6 on Windows

2015-09-28 Thread Adrian Waddell
8.5? Also, does anyone know a remedy to this gui error? Thanks, Adrian Waddell > sessionInfo() R version 3.2.2 (2015-08-14) Platform: i386-w64-mingw32/i386 (32-bit) Running under: Windows 8 x64 (build 9200) locale: [1] LC_COLLATE=English_Canada.1252 LC_CTYPE=English_Canada.1252

[Rd] Compiling a Tcl extension for an R package

2011-02-08 Thread Adrian Waddell
d.zip Can somebody help me to get this package to compile correctly under Linux, Windows and OSX? (i.e. writing a configure script with the correct compile commands). Thanks, Adrian Waddell ### C Code (save as hello.c): #include static int Hello_Cmd(ClientData

[Rd] Compiling Tcl extension C Code for an R package

2010-11-08 Thread Adrian Waddell
Dear R Community, I'm working on an R package that needs resizing of images. I try to keep dependencies of Tcl packages as little as possible, so I implemented the Image Scaling procedure in C as a Tcl extension found here http://wiki.tcl.tk/25685 . Here a temporary download link of the slightly

Re: [Rd] Installing a Tcl/Tk Extension on OSX

2010-09-02 Thread Adrian Waddell
...<°}))>< > ) ) ) ) ) > ( ( ( ( (Prof. Philippe Grosjean > ) ) ) ) ) > ( ( ( ( (Numerical Ecology of Aquatic Systems > ) ) ) ) ) Mons University, Belgium > ( ( ( ( ( > ..

[Rd] Installing a Tcl/Tk Extension on OSX

2010-09-01 Thread Adrian Waddell
Img tk package? Sincerely, Adrian Waddell __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] Including C Code for Tcl and Tk in an R package

2010-08-31 Thread Adrian Waddell
On 08/30/2010 03:01 AM, Prof Brian Ripley wrote: > On Mon, 30 Aug 2010, Adrian Waddell wrote: > >> Dear R Community, >> >> I adapted the C-Code found at (http://wiki.tcl.tk/25685) implementing >> fast image resizing for Tk images for my R package. >> >>

[Rd] Including C Code for Tcl and Tk in an R package

2010-08-29 Thread Adrian Waddell
onnects to? For example the gcc command I call under Ubuntu is: gcc -shared -o imgscale.so -DUSE_TCL_STUBS -I/usr/include/tcl8.5/ imagescale_85.c -L/usr/lib/ -ltclstub8.5 -fPIC and gcc -shared -o imgscale.so -DUSE_TCL_STUBS -I/usr/include/tcl8.4/ imagescale_84.c -L/usr/lib/ -ltclstub8.4 -fPIC

[Rd] accessing tcl variables within R and tcl

2010-08-12 Thread Adrian Waddell
and not via wrapper function in R. I therefore need a way to easily access tcl variables from within R and tcl. Thanks for any help, Adrian Waddell __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] Adding Tcl source to an R package

2010-08-10 Thread Adrian Waddell
On 08/10/2010 03:42 PM, Gabor Grothendieck wrote: > On Tue, Aug 10, 2010 at 3:33 PM, Adrian Waddell wrote: >> Dear R Community, >> >> I'm writing an R package with a lot of Tcl and Tk code. I use the Tcl >> wrapper functions provided by the tcltk package if po

[Rd] Adding Tcl source to an R package

2010-08-10 Thread Adrian Waddell
the Tcl procedures? And will these functions be within a Tcl namespace? Thanks, Adrian Waddell __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

[Rd] callNextMethod() and NAMESPACE

2010-04-15 Thread Adrian Waddell
method myObject[,1] but I get the error message: Error in callNextMethod() : bad object found as method (class "function") Interestingly, if I then execute the setMethod(f = "["... in the command prompt myObject[,1] works. Does anybody has a clue what could go wrong? Ad