Displaying 2 results from an estimated 2 matches for "tfsites".
2006 Mar 14
1
setMethod confusion
Hello I've checked through previous postings but don't see a fully
equivalent problem-just a few hints.
I have been trying to set a new method for the existing function "table"
or "as.data.frame.table" for my class "tfSites".
Taking out all the useful code and just returning the input class I get
the error
setMethod("table", "tfSites",
function(.Object) .Object)
Error in conformMethod(signature, mnames, fnames, f) :
In method for function "table": formal arguments omitte...
2006 Mar 15
1
setMethod confusion -best reference for S4 programming
...vious postings but
> Stephen> don't see a fully equivalent problem-just a few
> Stephen> hints. I have been trying to set a new method for
> Stephen> the existing function "table" or
> Stephen> "as.data.frame.table" for my class "tfSites".
> Stephen> Taking out all the useful code and just returning
> Stephen> the input class I get the error
>
> >> setMethod("table", "tfSites", function(.Object) .Object)
>
> Stephen> Error in conformMethod(signature, mnames,...