[R] R package creation: 'show' extension not imported correctly

2009-07-20 Thread L L
Dear List, I have a problem related to R package creation. I extended the 'show' method to cover a new class with the following lines in the zzz.R file in the R directory while creating an R package. setClass(rpa, contains=list) show.rpa - function (...) {cat(rpa object \n)} The corresponding

Re: [R] R package creation: 'show' extension not imported correctly

2009-07-20 Thread Duncan Murdoch
On 20/07/2009 7:53 PM, L L wrote: Dear List, I have a problem related to R package creation. I extended the 'show' method to cover a new class with the following lines in the zzz.R file in the R directory while creating an R package. setClass(rpa, contains=list) show.rpa - function (...)