For each year the given dataset contains the average price for the item sold, take this for example:
╔══════╦═══════════════╗
║ Year ║ Cost of flerg ║
╠══════╬═══════════════╣
║ 2007 ║ 13 ║
║ 2008 ║ 7 ║
║ 2009 ║ 8 ║
║ 2010 ║ 9 ║
║ 2011 ║ 12 ║
║ 2012 ║ 13 ║
║ 2013 ║ 9 ║
║ 2014 ║ 11 ║
║ 2015 ║ 14 ║
╚══════╩═══════════════╝
Now I want to estimate how much it'll be worth in 2016, 2017, ...
I have looked at some linear regression functions, but they only produce a slope and intercept number for a graph.
So does anyone know of a way to go about this?