Re: [R] cross-compiling for windows with linux

2003-07-06 Thread Duncan Murdoch
On Sun, 6 Jul 2003 16:53:37 +0200, you wrote: -- Making package splicegear installing inst files adding build stamp to DESCRIPTION installing R files save image /home/laurent/these/R/RCrossBuild/WinR/R-1.7.1/src/gnuwin32/install-save.sh: line 23:

[R] a Q re. read source files in spatial package.

2003-07-06 Thread Yan Yu
Hello, I tried to read the source file related to variograms in the spatial package. I copied part of the source file of spatial package as follows, in the follwing lines, I want to read VR_variogram function, from wrapped in .C(), I suppose it is a C function.. I searched in various sub

[R] Printing multiple graphics devices

2003-07-06 Thread Nathaniel Street
Hi I'm using a function (arrayview from the maanova package) that produces 12 plots, all in separate windows. How can I get each one to print to a jpeg file as the plots are produced? Alternatively, is it possible to get dev.print (jpeg.) to print all open graphics devices to separate

RE: [R] Generating a vector for breaks in a histogram

2003-07-06 Thread Mulholland, Tom
My gut feeling is that stacked dotplots would have given you the same insight. In general terms it's about getting the right tool for the right job. My comment was about the order of choosing rather than ignoring totally. If I recall correctly the article about dot plots was about old fashioned

Re: [R] 'postscript' command within a function

2003-07-06 Thread Andrew C. Ward
Edoardo, I'm wondering why postscript(file=filename) doesn't suffice, and you need to use eval instead? Regards, Andrew C. Ward CAPE Centre Department of Chemical Engineering The University of Queensland Brisbane Qld 4072 Australia [EMAIL PROTECTED] Quoting Edoardo Airoldi [EMAIL

[R] Problems with a dll under windows

2003-07-06 Thread Rob Hyndman
I am trying to get a dll compiled for use with dyn.load. I use R.1.7.1 under Windows. I have tried the following trivial example based on the Writing R extensions manual. rtest.h class X { public: X (); ~X (); void Give7(double*); }; class Y { public: Y (); ~Y (); };