Re: [R] Unexpected input while building package in R

2012-05-08 Thread abhisarihan
I just fixed the issue. I had to do a full re-install of R to get it working. I had initially re-installed Rtools and Perl which did not work. However, upon re-installing R, the error seemed to go away. So I do not really know what corrupted the R install from earlier, but at the moment, I seemed t

Re: [R] Unexpected input while building package in R

2012-05-08 Thread Mercier Eloi
You did not specify any object in the function. Thus R is building the package "test" with all the objects present in your session when you are calling the package.skeleton function. I suppose that one of these objects is causing problem. I suggest you list all the variables/function necessary

Re: [R] Unexpected input while building package in R

2012-05-08 Thread R. Michael Weylandt
Can you show us the file that's throwing an error? This suggests there's something syntactically invalid in your code, but it's impossible to say what without seeing it. Best, Michael On Tue, May 8, 2012 at 1:00 PM, abhisarihan wrote: > I am a newbie in R, and I am trying to build an R package

[R] Unexpected input while building package in R

2012-05-08 Thread abhisarihan
I am a newbie in R, and I am trying to build an R package but I keep getting an unexpected input error when I try using the build, check or install commands. I used the following command to generate the skeleton: package.skeleton("test") After this I went to the command prompt and to the directory