Question: Creating a regression line

Hey so I've been given a set of data, I was told to make a scatter plot which i did now I have to:

 

Use the regression feature of Maple to find a linear model of the data.

 

I don't know how to do this. What I have right now is:

> data := [[2005, 2.85], [2006, 5.70], [2007, 10.0], [2008, 14.8], [2011, 25.0]];
   [[2005, 2.85], [2006, 5.70], [2007, 10.0], [2008, 14.8], [2011, 25.0]]
> with(plots);
> pointplot(data);

 

What's the next step?

 

Thanks for any help.
 

Please Wait...