How-to: (Linear ...) regression in Sage
Suppose I have the following set of points r = [(1,2),(3.45,4),(6,5),(4,3)]. How do I implement in Sage a (linear) regression with "bord tools"?
It turns out that this has even showed up on Stack Overflow.
Luckily, that page refers to the function I had completely forgotten about - find_fit
.
sage: find_fit?
String Form: <function find_fit at 0x10bee5cf8>
Namespace: Interactive
File: /Applications/MathApps/sage/local/lib/python2.6/site-packages/sage/numerical/optimize.py
Definition: find_fit(data, model, initial_guess=None, parameters=None, variables=None, solution_dict=False)
Docstring:
Finds numerical estimates for the parameters of the function model
to give a best fit to data.
So this might work, and looks decent.
sage: R = [[1,2],[3.45,4],[6,5],[4,3]]
sage: var('a,b')
(a, b)
sage: model(x) = a*x+b
sage: find_fit(R,model)
[a == 0.56881365890949054, b == 1.445160655902004]
sage: points(R)+plot(model(a=find_fit(R,model)[0].rhs(),b=find_fit(R,model)[1].rhs()),(x,0,10),color='red')
If you are serious about your needs, though, you should probably use some of the tools in Scipy or R (numerous YouTube videos on this, though for reason I can't watch them right now.
See also the answers to http://ask.sagemath.org/question/348/plotting-and-fitting
Thank you for your answer
answered 7 years ago
This post is a wiki. Anyone with karma >750 is welcome to improve it.
Any way to find the Correlation Coefficient r and the Coefficient of Determination r^2 using find_fit()? TIA, AJG calcpage@gmail.com http://shadowfaxrant.blogspot.com http://www.youtube.com/calcpage2009 (www.youtube.com/calcpage2009)
Welcome to Ask Sage. Please post this as a new question rather than as an answer here (then delete the answer here). Avoid checking the "community wiki" checkbox on Ask Sage.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 14 years ago
Seen: 8,501 times
Last updated: Aug 04 '12
Can you clarify 'bord tools'? I'm not familiar with this phrase.
I don't know what "bord tools" means, but you can do all kinds of regression analysis, including linear regression, using the Sage interface to R. There are experts lurking here that I'm sure can give you an example.
I bet it is a translation from French: "avec les outils du bord". It means : using only what already exists in Sage.