Re: [R] Work with packages without using R CMD build/install

2008-09-16 Thread Duncan Murdoch
On 16/09/2008 8:12 AM, KarstenW wrote: Hello, for my small project I would like to organize the data, functions and documentation as a package. I have already created a skeleton directory structure with DESCRIPTION file and put some files in the R, man and data subdirectories. Now I would li

Re: [R] Work with packages without using R CMD build/install

2008-09-16 Thread Gabor Grothendieck
If you don't use a namespace then you can use R CMD to build and install it at the beginning and then as you make changes just source() the changed .R files from the R source directory. That will let you run with those changes before they have been built and installed. On Tue, Sep 16, 2008 at 8:1

Re: [R] Work with packages without using R CMD build/install

2008-09-16 Thread Uwe Ligges
KarstenW wrote: Hello, for my small project I would like to organize the data, functions and documentation as a package. I have already created a skeleton directory structure with DESCRIPTION file and put some files in the R, man and data subdirectories. Now I would like to work on the pac

[R] Work with packages without using R CMD build/install

2008-09-16 Thread KarstenW
Hello, for my small project I would like to organize the data, functions and documentation as a package. I have already created a skeleton directory structure with DESCRIPTION file and put some files in the R, man and data subdirectories. Now I would like to work on the package without calling