Re: [R] Launcher for Rattle?

2011-07-01 Thread Graham Williams
Thanks to the advice from Brian, the next version of Rattle (2.6.7) will have the two bugs fixed. Then your launcher will simply need to be: sh -c 'R_DEFAULT_PACKAGES=rattle R $@' Regards, Graham On 16 April 2011 20:57, Iurie Malai iurie.ma...@gmail.com wrote: Thank you! Your code worked!

Re: [R] Launcher for Rattle?

2011-04-16 Thread Iurie Malai
Thank you! Your code worked! I tested all the combinations and this shows that, in addition to the 'rattle', in this launcher code the 'utils' package is required, otherwise 'rattle' do not launch. Without all other packages 'rattle' starts very well. But what will be better, the inclusion or not

[R] Launcher for Rattle?

2011-04-15 Thread Iurie Malai
How to make a launcher for Rattle? Regards, Iurie Malai Moldova Pedagogical State University [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting

Re: [R] Launcher for Rattle?

2011-04-15 Thread Iurie Malai
I tried this: sh -c 'R_DEFAULT_PACKAGES=$R_DEFAULT_PACKAGES rattle R $@' but without success. I get this message: R version 2.13.0 (2011-04-13) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i486-pc-linux-gnu (32-bit) R is free software and comes

Re: [R] Launcher for Rattle?

2011-04-15 Thread Prof Brian Ripley
This is a result of bugs in rattle. The first bug is that you are explicitly asked on its help page not to use installed.packages() in that way. Second, packages should be able to be loaded in a session with just base loaded, so rattle's startup code should have utils::installed.packages().