[R] Problems Creating an R package

2006-06-29 Thread Aarti Dahiya
Hi all, When I check my package using Rcmd check ..\myPackage\R.mykg on Windows in Command Prompt, this is what get:- * using log directory 'C:/R/bin/R.getdata.Rcheck' * using Version 2.3.1 (2006-06-01) * checking for file 'R.getdata/DESCRIPTION' ... OK * checking extension type ... Package *

Re: [R] Problems Creating an R package

2006-06-29 Thread Thomas Petzoldt
Hi Aarti src/ if you have source files in C or Fortran. R/for the R sources. If you have no C or Fortran files, you should delete the src/ directory. The syntax error in your R function is simply that the , is on a new line so R thinks that the line above is complete. Hope it helps

Re: [R] Problems Creating an R package

2006-06-29 Thread Prof Brian Ripley
On Thu, 29 Jun 2006, Thomas Petzoldt wrote: Hi Aarti src/ if you have source files in C or Fortran. R/for the R sources. If you have no C or Fortran files, you should delete the src/ directory. The syntax error in your R function is simply that the , is on a new line so R thinks