I am getting the following: *** Weave Errors *** Error in driver$runcode(drobj, chunk, chunkopts) : Error in eval(expr, envir, enclos) : couldn't find function "pacf.mts" *** Source Errors *** Error in eval(expr, envir, enclos) : couldn't find function "pacf.mts" make[1]: *** [checkVignettes] Error 1 I don't really understand the new namespace mechanism, so I am not sure if this is a problem with R-1.7.0beta, or because of a change I should be making in my code. Does it make sense that the generic pacf is found, but not the method pacf.mts? (I am calling pacf and not pacf.mts.) Paul
>>>>> "PaulG" == Paul Gilbert <pgilbert@bank-banque-canada.ca> >>>>> on Wed, 02 Apr 2003 15:29:50 -0500 writes:PaulG> I am getting the following: PaulG> *** Weave Errors *** PaulG> Error in driver$runcode(drobj, chunk, chunkopts) : PaulG> Error in eval(expr, envir, enclos) : couldn't find PaulG> function "pacf.mts" PaulG> *** Source Errors *** PaulG> Error in eval(expr, envir, enclos) : couldn't find PaulG> function "pacf.mts" PaulG> make[1]: *** [checkVignettes] Error 1 PaulG> I don't really understand the new namespace PaulG> mechanism, so I am not sure if this is a problem with PaulG> R-1.7.0beta, or because of a change I should be PaulG> making in my code. Does it make sense that the PaulG> generic pacf is found, but not the method pacf.mts? yes, that was the idea of "hiding" methods in the namespace, such that users cannot call the methods directly. PaulG> (I am calling pacf and not pacf.mts.) hmm, so I don't see why the problem above happens. Can you give a bit more details on how you triggered the errors above ? Thanks (to everyone else who does) for beta testing R-beta ! Martin
I think this is a bug. Sorry I'm still using a version from a couple of days ago. R : Copyright 2003, The R Development Core Team Version 1.7.0 Under development (unstable) (2003-04-08) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type `license()' or `licence()' for distribution details. R is a collaborative project with many contributors. Type `contributors()' for more information. Type `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R.> library(ts) > z <- matrix (rnorm(200), 100,2) > zz <- acf(z, plot=FALSE, type= "partial")$acfError in eval(expr, envir, enclos) : couldn't find function "pacf.mts">Paul Gilbert