I don't know how to go about using line of best fit to predict the values of 2 variables in an existing dataframe. For example, let's say column 'Year' in a dataframe stopped at 2013 butI want my line of best fit to extend beyond 2050 to predict the values of 'Income' column (like the trend) plotting it using matplotlib. I know I would probably use linregress() function from scipy.stats but I don't know how to predict it. Thanks in advance for your help,