Intoducing Octave
Fitted line graph -the blue lines is derived from the red crosses |
If you got past the title you are doing well! More line fitting, but we're now into multi-dimensional space captain! Put simply this means that you have more parameters (different types) of information to match. So in the house price eample used in the course; the simple version matches area(sq ft) to the price of the house, the multivarient version might use area, number of rooms, and age to get you a more accurate fit. Fortunately, it works as you'd hope, in that you just add up the effects of the different terms, or in programming terms you just have two loops :
for i = 1 to number_of_houses
for j = number_of things_i_know_about_a_house
work_it_out()
end
end
Cost function plot from Octave |
number_of_houses * work_it_out(number_of things_i_know_about_a_house)A lot simpler and, because Octave is built for this sort of job, much quicker.
Onwards and Upwards. The top graph represents the point of all this, if you know the area of your house you can estimate it's cost. The advantage of getting a computer to do this is that you can have enormous training sets -all house prices in the country, and do lots of subset plots -all semis, all semis in Suffolk etc.