1

My problem

I want to predict housing prices in a city (for an upcoming year).

My solution

Create a MLR, where average housing price is dependent and macroeconomic fundamentals (population, gdp, household income etc.) are independent.


How do I proceed with the forecasting? Do I use time series methods to forecast the independent and model the price? Or is it possible to run a regression between the modeled price and time.

I am also looking for a piece of literature related to my question.

Ferdi
  • 4,882
  • 7
  • 42
  • 62
Jan Vo
  • 11
  • 2
  • do you know the difference between time-series forecasting and regression. In fact a better question will be, "do you even know what you want to accomplish?" – mnm Aug 06 '18 at 02:33
  • what I want to accomplish is to forecast average housing price in a city. What I thought could be an approach is to model the price usig MLR, then predict the independent variables through time-series forecasting and using them model the "future" average price. – Jan Vo Aug 06 '18 at 02:46

1 Answers1

1

The keyword you're after is the Boston Housing dataset. It's a data set of house prices in boston, along with various other variables, such as local crime, house size, distance to nearby shops/motorways etc.

It's a well known example dataset, so you'll be able to find examples of all sorts of house price prediction models. Download the data set and follow some of the examples to get a handle on ways in which you can approach your problem.

Ingolifs
  • 1,495
  • 8
  • 28
  • 1
    Thanks - i think it shows how to creates the hedonic model of a housing price. What I am trying to do is to create a model (MLR), where an average housing price in the city is dependent and avg. income, population, gdp, etc of the city is independent. Then I want to predict the future average price - and I though about predicting the independent variables using time series and then using these predictions in the model I created, thus modeling "future" prices. I also read, that you can run the regression of a dependent variable and set time as an independent variable. Hope it makes sense. – Jan Vo Aug 06 '18 at 03:08
  • Setting time as in independent variable is sometimes useful but it is not where you want to start as I discussed here https://stats.stackexchange.com/questions/225931/why-is-my-high-degree-polynomial-regression-model-suddenly-unfit-for-the-data/289499#289499 reflecting on @Huber's insightful comment – IrishStat Aug 06 '18 at 12:19