{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "tags": [ "remove_input" ] }, "outputs": [], "source": [ "path_data = '../../../../data/'\n", "\n", "import numpy as np\n", "import pandas as pd\n", "\n", "%matplotlib inline\n", "import matplotlib.pyplot as plt\n", "plt.style.use('fivethirtyeight')\n", "\n", "import warnings\n", "warnings.filterwarnings('ignore')" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [ "remove_input" ] }, "outputs": [], "source": [ "def standard_units(any_numbers):\n", " \"Convert any array of numbers to standard units.\"\n", " return (any_numbers - np.mean(any_numbers))/np.std(any_numbers) \n", "\n", "def correlation(t, x, y):\n", " return np.mean(standard_units(t[x])*standard_units(t[y]))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now that we have explored ways to use multiple attributes to predict a categorical variable, let us return to predicting a quantitative variable. Predicting a numerical quantity is called regression, and a commonly used method to use multiple attributes for regression is called *multiple linear regression*.\n", "\n", "## Home Prices\n", "\n", "The following dataset of house prices and attributes was collected over several years for the city of Ames, Iowa. A [description of the dataset appears online](http://ww2.amstat.org/publications/jse/v19n3/decock.pdf). We will focus only a subset of the columns. We will try to predict the sale price column from the other columns." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "all_sales = pd.read_csv(path_data + 'house.csv')\n", "\n", "len(all_sales)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sales1 = all_sales[all_sales['Bldg Type'] == '1Fam']\n", "sales2 = sales1[all_sales['Sale Condition'] == 'Normal']\n", "\n", "sales = sales2[['SalePrice', '1st Flr SF', '2nd Flr SF', \n", " 'Total Bsmt SF', 'Garage Area', \n", " 'Wood Deck SF', 'Open Porch SF', 'Lot Area', \n", " 'Year Built', 'Yr Sold']]\n", "\n", "sales = sales.sort_values(by=['SalePrice'])\n", "\n", "len(sales)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A histogram of sale prices shows a large amount of variability and a distribution that is clearly not normal. A long tail to the right contains a few houses that had very high prices. The short left tail does not contain any houses that sold for less than $35,000." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "unit = '$'\n", "\n", "fig, ax = plt.subplots(figsize=(8,5))\n", "\n", "ax.hist(sales['SalePrice'], bins=32, density=True, color='blue', alpha=0.8, ec='white', zorder=5)\n", "\n", "y_vals = ax.get_yticks()\n", "\n", "y_label = 'Percent per ' + (unit if unit else 'unit')\n", "\n", "x_label = 'SalesPrice ($)' \n", "\n", "ax.set_yticklabels(['{:g}'.format(x * 100) for x in y_vals])\n", "\n", "plt.ylabel(y_label)\n", "\n", "plt.xlabel(x_label)\n", "\n", "plt.xticks(rotation=90)\n", "\n", "plt.title('');\n", "\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Correlation\n", "\n", "No single attribute is sufficient to predict the sale price. For example, the area of first floor, measured in square feet, correlates with sale price but only explains some of its variability." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "fig, ax = plt.subplots(figsize=(7,6))\n", "\n", "ax.scatter(sales['1st Flr SF'], \n", " sales['SalePrice'], \n", " color='navy', \n", " alpha=0.5)\n", "\n", "x_label = '1st Flr SF'\n", "\n", "y_label = 'SalePrice'\n", "\n", "plt.ylabel(y_label)\n", "\n", "plt.xlabel(x_label)\n", "\n", "plt.show()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "correlation(sales, 'SalePrice', '1st Flr SF')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In fact, none of the individual attributes have a correlation with sale price that is above 0.7 (except for the sale price itself)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "for label in sales.columns:\n", " print('Correlation of', label, 'and SalePrice:\\t', correlation(sales, label, 'SalePrice'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "However, combining attributes can provide higher correlation. In particular, if we sum the first floor and second floor areas, the result has a higher correlation than any single attribute alone." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sales_copy = sales.copy()\n", "\n", "both_floors = sales_copy.iloc[:,1] + sales_copy.iloc[:,2]\n", "\n", "sales_copy['Both Floors'] = both_floors\n", "\n", "correlation(sales_copy, 'SalePrice', 'Both Floors')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This high correlation indicates that we should try to use more than one attribute to predict the sale price. In a dataset with multiple observed attributes and a single numerical value to be predicted (the sale price in this case), multiple linear regression can be an effective technique.\n", "\n", "## Multiple Linear Regression \n", "\n", "In multiple linear regression, a numerical output is predicted from numerical input attributes by multiplying each attribute value by a different slope, then summing the results. In this example, the slope for the `1st Flr SF` would represent the dollars per square foot of area on the first floor of the house that should be used in our prediction. \n", "\n", "Before we begin prediction, we split our data randomly into a training and test set of equal size." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Train / Test split" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sales_copy = sales.copy()\n", "train = sales_copy.sample(1001, replace=False)\n", "test = sales_copy.drop(train.index)\n", "\n", "print(len(train), 'training and', len(test), 'test instances.')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### define function to create train, test split" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def split(self, k):\n", " if not 1 <= k <= (len(self) - 1):\n", " raise ValueError(\"Invalid value of k. k must be between 1 and the\"\n", " \"number of rows - 1\")\n", "\n", " rows = np.random.permutation(len(self))\n", "\n", " first = self.take(rows[:k])\n", " rest = self.take(rows[k:])\n", "\n", " return first, rest\n", "\n", "train, test = split(sales, 1001)\n", "\n", "print(len(train), 'training and', len(test), 'test instances.')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Alternative (*preferred*) - scikit learn\n", "as an aside we could emplot the `scikit learn` function to determine the `train, test split`.\n", "\n", "[sklearn.model_selection.train_test_split](https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.train_test_split.html#sklearn-model-selection-train-test-split)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "from sklearn.model_selection import train_test_split\n", "\n", "train, test = train_test_split(sales_copy, test_size=0.5)\n", "\n", "print(len(train), 'training and', len(test), 'test instances.')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The slopes in multiple regression is an array that has one slope value for each attribute in an example. Predicting the sale price involves multiplying each attribute by the slope and summing the result." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def predict(slopes, row):\n", " return sum(slopes * np.array(row))\n", "\n", "example_row1 = test.drop(columns=['SalePrice'])\n", "example_row = example_row1.iloc[0]\n", "\n", "print('Predicting sale price for:')\n", "print(example_row)\n", "\n", "example_slopes = np.random.normal(10, 1, len(example_row))\n", "\n", "print('\\nUsing slopes:\\n', example_slopes)\n", "\n", "print('\\nResult:', predict(example_slopes, example_row))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The result is an estimated sale price, which can be compared to the actual sale price to assess whether the slopes provide accurate predictions. Since the `example_slopes` above were chosen at random, we should not expect them to provide accurate predictions at all." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('Actual sale price:', test['SalePrice'].iloc[0])\n", "print('Predicted sale price using random slopes:', predict(example_slopes, example_row))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Least Squares Regression\n", "\n", "The next step in performing multiple regression is to define the least squares objective. We perform the prediction for each row in the training set, and then compute the root mean squared error (RMSE) of the predictions from the actual prices." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "train_prices = train.iloc[:,0]\n", "train1 = train.copy()\n", "train_attributes = train1.drop(train1.columns[0], axis=1)\n", "\n", "def rmse(slopes, attributes, prices):\n", " errors = []\n", " for i in np.arange(len(prices)):\n", " predicted = predict(slopes, attributes.iloc[i])\n", " actual = prices.iloc[i]\n", " errors.append((predicted - actual) ** 2)\n", " return np.mean(errors) ** 0.5\n", "\n", "def rmse_train(slopes):\n", " return rmse(slopes, train_attributes, train_prices)\n", "\n", "print('RMSE of all training examples using random slopes:', rmse_train(example_slopes))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, we use the `minimize` function to find the slopes with the lowest RMSE. Since the function we want to minimize, `rmse_train`, takes an array instead of a number, we must pass the `array=True` argument to `minimize`. When this argument is used, `minimize` also requires an initial guess of the slopes so that it knows the dimension of the input array. Finally, to speed up optimization, we indicate that `rmse_train` is a smooth function using the `smooth=True` attribute. Computation of the best slopes may take several minutes.\n", "\n", "[scipy optimize.minimize](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.minimize.html)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from scipy import optimize\n", "\n", "def minimize(f, start=None, smooth=False, log=None, array=False, **vargs):\n", " \"\"\"Minimize a function f of one or more arguments.\n", " Args:\n", " f: A function that takes numbers and returns a number\n", " start: A starting value or list of starting values\n", " smooth: Whether to assume that f is smooth and use first-order info\n", " log: Logging function called on the result of optimization (e.g. print)\n", " vargs: Other named arguments passed to scipy.optimize.minimize\n", " Returns either:\n", " (a) the minimizing argument of a one-argument function\n", " (b) an array of minimizing arguments of a multi-argument function\n", " \"\"\"\n", " if start is None:\n", " assert not array, \"Please pass starting values explicitly when array=True\"\n", " arg_count = f.__code__.co_argcount\n", " assert arg_count > 0, \"Please pass starting values explicitly for variadic functions\"\n", " start = [0] * arg_count\n", " if not hasattr(start, '__len__'):\n", " start = [start]\n", "\n", " if array:\n", " objective = f\n", " else:\n", " @functools.wraps(f)\n", " def objective(args):\n", " return f(*args)\n", "\n", " if not smooth and 'method' not in vargs:\n", " vargs['method'] = 'Powell'\n", " result = optimize.minimize(objective, start, **vargs)\n", " if log is not None:\n", " log(result)\n", " if len(start) == 1:\n", " return result.x.item(0)\n", " else:\n", " return result.x" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "best_slopes = minimize(rmse_train, start=example_slopes, smooth=True, array=True)\n", " \n", "train_df = pd.DataFrame(columns=[train_attributes.columns])\n", "\n", "train_df.loc[0] = best_slopes\n", "\n", "print('The best slopes for the training set:')\n", "\n", "train_df" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('RMSE of all training examples using the best slopes:', rmse_train(best_slopes))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Interpreting Multiple Regression \n", "\n", "Let's interpret these results. The best slopes give us a method for estimating the price of a house from its attributes. A square foot of area on the first floor is worth about \\$75 (the first slope), while one on the second floor is worth about \\\\$70 (the second slope). The final negative value describes the market: prices in later years were lower on average.\n", "\n", "The RMSE of around \\\\$30,000 means that our best linear prediction of the sale price based on all of the attributes is off by around \\\\$30,000 on the training set, on average. We find a similar error when predicting prices on the test set, which indicates that our prediction method will generalize to other samples from the same population." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "test_prices = test.iloc[:,0]\n", "\n", "test_attributes = test.drop(test.columns[0], axis=1)\n", "test_attributes.head(2)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "test_prices = test.iloc[:,0]\n", "test_attributes = test.drop(test.columns[0], axis=1)\n", "\n", "def rmse_test(slopes):\n", " return rmse(slopes, test_attributes, test_prices)\n", "\n", "rmse_linear = rmse_test(best_slopes)\n", "print('Test set RMSE for multiple linear regression:', rmse_linear)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If the predictions were perfect, then a scatter plot of the predicted and actual values would be a straight line with slope 1. We see that most dots fall near that line, but there is some error in the predictions." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def fit(row):\n", " return sum(best_slopes * np.array(row))\n", "\n", "test['Fitted'] = test_attributes.apply(fit, axis=1)\n", "\n", "fig, ax = plt.subplots(figsize=(7,6))\n", "\n", "ax.scatter(test['Fitted'], \n", " test['SalePrice'], \n", " color='navy', \n", " alpha=0.5)\n", "\n", "x_label = 'Fitted'\n", "\n", "y_label = 'SalePrice'\n", "\n", "plt.ylabel(y_label)\n", "\n", "plt.xlabel(x_label)\n", "\n", "plt.plot([0, 5e5], [0, 5e5])\n", "\n", "plt.show()\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A residual plot for multiple regression typically compares the errors (residuals) to the actual values of the predicted variable. We see in the residual plot below that we have systematically underestimated the value of expensive houses, shown by the many positive residual values on the right side of the graph." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "test['Residual'] = test_prices-test_attributes.apply(fit, axis=1)\n", "\n", "fig, ax = plt.subplots(figsize=(7,6))\n", "\n", "ax.scatter(test['SalePrice'], \n", " test['Residual'], \n", " color='navy', \n", " alpha=0.5)\n", "\n", "x_label = 'SalePrice'\n", "\n", "y_label = 'SalePrice'\n", "\n", "plt.ylabel(y_label)\n", "\n", "plt.xlabel(x_label)\n", "\n", "plt.xticks(rotation=90)\n", "\n", "plt.plot([0, 7e5], [0, 0])\n", "\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As with simple linear regression, interpreting the result of a predictor is at least as important as making predictions. There are many lessons about interpreting multiple regression that are not included in this textbook. A natural next step after completing this text would be to study linear modeling and regression in further depth." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Nearest Neighbors for Regression\n", "\n", "Another approach to predicting the sale price of a house is to use the price of similar houses. This *nearest neighbor* approach is very similar to our classifier. To speed up computation, we will only use the attributes that had the highest correlation with the sale price in our original analysis." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "train_nn = train.iloc[:,[0, 1, 2, 3, 4, 8]]\n", "test_nn = test.iloc[:,[0, 1, 2, 3, 4, 8]]\n", "train_nn.head(3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The computation of closest neighbors is identical to a nearest-neighbor classifier. In this case, we will exclude the `'SalePrice'` rather than the `'Class'` column from the distance computation. The five nearest neighbors of the first test row are shown below." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def distance(pt1, pt2):\n", " \"\"\"The distance between two points, represented as arrays.\"\"\"\n", " return np.sqrt(np.sum((pt1 - pt2) ** 2))\n", " \n", "\n", "def row_distance(row1, row2):\n", " \"\"\"The distance between two rows of a table.\"\"\"\n", " return distance(np.array(row1), np.array(row2))\n", "\n", "def distances(training, example, output):\n", " \"\"\"Compute the distance from example for each row in training.\"\"\"\n", " dists = []\n", " attributes = training.drop(columns=[output])\n", "\n", " for row in range(len(attributes)):\n", " dists.append(row_distance(attributes.iloc[row], example))\n", " \n", " training['Distance'] = dists\n", " #print(training)\n", " return training\n", "\n", "def closest(training, example, k, output):\n", " \"\"\"Return a table of the k closest neighbors to example.\"\"\"\n", " \n", " distance = distances(training, example, output).sort_values(by=['Distance']).take(np.arange(k))\n", " return distance\n", "\n", "train_nn_A = train_nn.copy()\n", "example_nn_row = test_nn.drop(test_nn.columns[0], axis=1).iloc[0]\n", "closest(train_nn_A, example_nn_row, 5, 'SalePrice')\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "One simple method for predicting the price is to average the prices of the nearest neighbors." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "example_nn_row" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def predict_nn(example):\n", " \"\"\"Return the majority class among the k nearest neighbors.\"\"\"\n", " train_nn_B = train_nn.copy()\n", " \n", " col_sales_price = closest(train_nn_B, example, 5, 'SalePrice')\n", " return np.average(col_sales_price['SalePrice'])\n", "\n", "predict_nn(example_nn_row)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, we can inspect whether our prediction is close to the true sale price for our one test example. Looks reasonable!" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('Actual sale price:', test_nn['SalePrice'].iloc[0])\n", "\n", "print('Predicted sale price using nearest neighbors:', predict_nn(example_nn_row))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Evaluation\n", "\n", "To evaluate the performance of this approach for the whole test set, we apply `predict_nn` to each test example, then compute the root mean squared error of the predictions. Computation of the predictions may take several minutes." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def predict_nn(example):\n", " \"\"\"Return the majority class among the k nearest neighbors.\"\"\"\n", " train_nn_B = train_nn.copy()\n", " \n", " col_sales_price = closest(train_nn_B, example, 5, 'SalePrice')\n", " return np.average(col_sales_price['SalePrice'])\n", "\n", "predict_nn(example_nn_row)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "test_nn_C = test_nn.copy()\n", "\n", "test_nn_drop = test_nn_C.drop(columns=['SalePrice'])\n", "\n", "nn_test_predictions = test_nn_drop.apply(predict_nn, axis=1)\n", "\n", "rmse_nn = np.mean((test_prices - nn_test_predictions) ** 2) ** 0.5\n", "\n", "print('Test set RMSE for multiple linear regression: ', rmse_linear)\n", "print('Test set RMSE for nearest neighbor regression:', rmse_nn)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For these data, the errors of the two techniques are quite similar! For different data sets, one technique might outperform another. By computing the RMSE of both techniques on the same data, we can compare methods fairly. One note of caution: the difference in performance might not be due to the technique at all; it might be due to the random variation due to sampling the training and test sets in the first place.\n", "\n", "Finally, we can draw a residual plot for these predictions. We still underestimate the prices of the most expensive houses, but the bias does not appear to be as systematic. However, fewer residuals are very close to zero, indicating that fewer prices were predicted with very high accuracy. " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "test['Residual'] = test_prices-nn_test_predictions\n", "\n", "fig, ax = plt.subplots(figsize=(7,6))\n", "\n", "ax.scatter(test['SalePrice'], \n", " test['Residual'], \n", " color='navy', \n", " alpha=0.5)\n", "\n", "x_label = 'SalePrice'\n", "\n", "y_label = 'SalePrice'\n", "\n", "plt.ylabel(y_label)\n", "\n", "plt.xlabel(x_label)\n", "\n", "plt.xticks(rotation=90)\n", "\n", "plt.plot([0, 7e5], [0, 0])\n", "\n", "plt.show()" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.5" } }, "nbformat": 4, "nbformat_minor": 2 }