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
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
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
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
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
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
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
> 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.
[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