I would think you could also do so with lines() directly, though you'll have to choose an appropriate mesh of points to do so. A little wrapper function could be written to do so pretty easily if you want to combine it with the scatterplot, but since the fitted values are already in the output of lm something like this should work:
# Untested lines(m$x, m$fitted.values) Michael On Oct 28, 2011, at 12:10 PM, Ben Tupper <btup...@bigelow.org> wrote: > Hi, > > On Oct 28, 2011, at 11:49 AM, Fernando Andreacci wrote: > >> The cubic regression of my model is significant and I want to plot a line >> that best fits. It's not abline() function, because it has a curve. Please, >> how can I plot it? >> > > Will curve() do it for you? > > ?curve > > Cheers, > Ben > > > > >> >> >> --- >> Fernando Andreacci >> Biólogo >> Fone +55 47 9921 4015 >> fandrea...@gmail.com >> >> [[alternative HTML version deleted]] >> >> ______________________________________________ >> R-help@r-project.org mailing list >> 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. > > Ben Tupper > Bigelow Laboratory for Ocean Sciences > 180 McKown Point Rd. P.O. Box 475 > West Boothbay Harbor, Maine 04575-0475 > http://www.bigelow.org > > ______________________________________________ > R-help@r-project.org mailing list > 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. ______________________________________________ R-help@r-project.org mailing list 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.