Alaa Sindi
2015-Sep-22 19:07 UTC
[R] Error in eval(expr, envir, enclos) : could not find function
hi all I am getting this error "Error in eval(expr, envir, enclos) : could not find function ? do you have an idea what might cause this problem. thanks
Mark Sharp
2015-Sep-22 19:41 UTC
[R] Error in eval(expr, envir, enclos) : could not find function
Please provide a context for your question. See the posting guide referenced below for instructions on providing commented, minimal, self-contained, reproducible code. If you can show how to produce the error, someone can almost certainly show you how to avoid it. Mark R. Mark Sharp, Ph.D. msharp at TxBiomed.org> On Sep 22, 2015, at 2:07 PM, Alaa Sindi <alaasindi at gmail.com> wrote: > > hi all > > I am getting this error "Error in eval(expr, envir, enclos) : could not find function ? > > do you have an idea what might cause this problem. > > thanks > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
William Dunlap
2015-Sep-22 20:09 UTC
[R] Error in eval(expr, envir, enclos) : could not find function
You left out the rest of the error message (the name of the function it is looking for is key): > lm(Y ~ nosuchfuncion(X), data=data.frame(Y=1:10,X=log(1:10))) Error in eval(expr, envir, enclos) : could not find function "nosuchfuncion" Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Sep 22, 2015 at 12:07 PM, Alaa Sindi <alaasindi at gmail.com> wrote:> hi all > > I am getting this error "Error in eval(expr, envir, enclos) : could not find function ? > > do you have an idea what might cause this problem. > > thanks > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.