Skip to content

predict function

3 messages · Thomas Jagoe, Uwe Ligges, Douglas Grove

#
I am using R to do a loess normalisation procedure.
In 1.5.1 I used the following commands to normalise the variable "logratio",
over a 2d surface (defined by coordinates x and y):
However in 1.8.1 all goes well until the last step when I get an error:

Error: couldn't find function "predict.loess"

Can anyone help ?

Thomas
#
Thomas Jagoe wrote:

            
Use predict() instead of predict.loess() (the method is hidden in a 
namespace, you should use the generic function).

Uwe Ligges
#
You can't use this anymore.  The function predict() has a method
for loess objects, but there is no longer an available function
called "predict.loess".   So just replace "predict.loess"
with "predict".
On Fri, 13 Feb 2004, Thomas Jagoe wrote: