Re: [Rd] missing IntegerFromString()

2007-06-05 Thread Seth Falcon
Hi Aniko, "Aniko Szabo" <[EMAIL PROTECTED]> writes: > I have created a DLL not so long ago using C code. My code used the > IntegerFromString() function that used to be exported in the > Rinternals.h header file (and thus easily accessible). Recently I > upgraded to R 2.5.0 and my DLL stopped wor

Re: [Rd] 'R CMD INSTALL mypkg' doesn't always update help pages

2007-06-05 Thread Jari Oksanen
On 6 Jun 2007, at 01:45, Herve Pages wrote: > Hi, > > 'R CMD INSTALL mypkg' and 'install.packages(mypkg, repos=NULL)' don't > update mypkg help pages when mypkg is a source directory. They only > install new help pages if there are some but they leave the already > installed pages untouched. So y

[Rd] 'R CMD INSTALL mypkg' doesn't always update help pages

2007-06-05 Thread Herve Pages
Hi, 'R CMD INSTALL mypkg' and 'install.packages(mypkg, repos=NULL)' don't update mypkg help pages when mypkg is a source directory. They only install new help pages if there are some but they leave the already installed pages untouched. So you end up with mixed man pages from different versions of

Re: [Rd] HTML vignette browser

2007-06-05 Thread Deepayan Sarkar
On 6/5/07, Friedrich Leisch <[EMAIL PROTECTED]> wrote: > > On Mon, 04 Jun 2007 11:52:51 -0700, > > Robert Gentleman (RG) wrote: > > > Deepayan Sarkar wrote: > >> On 6/4/07, Seth Falcon <[EMAIL PROTECTED]> wrote: > >>> Friedrich Leisch <[EMAIL PROTECTED]> writes: > Looks good to

[Rd] documenting S4 replacement methods

2007-06-05 Thread Aaron A. King
I'm writing a package that uses S4 classes. I'd like to have a 'coef<-' method for one or more of the classes. The generic is defined already (in nlme). Defining it is no problem, but I can't seem to figure out how to handle the documentation. In particular, I'd like a \usage entry in the .R

[Rd] missing IntegerFromString()

2007-06-05 Thread Aniko Szabo
I have created a DLL not so long ago using C code. My code used the IntegerFromString() function that used to be exported in the Rinternals.h header file (and thus easily accessible). Recently I upgraded to R 2.5.0 and my DLL stopped working. I see that the IntegerFromString() function is not expor

Re: [Rd] HTML vignette browser

2007-06-05 Thread Roger Peng
This is very nice work and I like it a lot. I think it would be quite useful for teaching. My only thought was that when I saw 'source' I was expecting R code, but instead got LaTeX/Noweb. It does seem that 'source' is a little ambiguous here. -roger On 6/1/07, Deepayan Sarkar <[EMAIL PROTECT

Re: [Rd] HTML vignette browser

2007-06-05 Thread Friedrich Leisch
> On Mon, 04 Jun 2007 11:52:51 -0700, > Robert Gentleman (RG) wrote: > Deepayan Sarkar wrote: >> On 6/4/07, Seth Falcon <[EMAIL PROTECTED]> wrote: >>> Friedrich Leisch <[EMAIL PROTECTED]> writes: Looks good to me, and certainly something worth being added to R.

Re: [Rd] setClass with a slot of RODBC

2007-06-05 Thread Uwe Ligges
[EMAIL PROTECTED] wrote: > > Hi - I tried to get some answer before but there seems to have no one > response. My question is that I have a class like below definition: Don't forget that "RODBC" is not an S4 but an S3 class, hence you have to declare it: setOldClass("RODBC") Uwe Ligges