I have gotten this sort of problem some weeks ago and have solved it with the mailing list archive. But now I have this problem again with the class library. What should I put in library/class/R/zzz.R? Everything I put in that file leads to the same error message. I'm running 0.61.3 on Linux.> knn1(train, test, cl)Error in .C("VR_knn1", as.integer(ntr), as.integer(nte), as.integer(p), : C/Fortran function not in load table Execution halted -Egon -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
>> knn1(train, test, cl) >Error in .C("VR_knn1", as.integer(ntr), as.integer(nte), as.integer(p), >: C/Fortran function not in load tableThis sounds like the bug which causes .Dyn.libs to linger in .RData, causing code not to be dyn.loaded. If you really didn't intend to save .RData then you can rm .RData before you start R. Otherwise, once R is started, but before you use library() do rm(.Dyn.libs). Paul Gilbert -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._