updated rental_predictions.sql

fixed typo
This commit is contained in:
Ramkumar Chandrasekaran
2017-04-21 16:55:17 -07:00
committed by GitHub
parent c813f7dcb2
commit ca8de955e4
@@ -102,7 +102,7 @@ print(lin_predictions)
# Import the scikit-learn function to compute error.
from sklearn.metrics import mean_squared_error
# Compute error between our test predictions and the actual values.
lin_mse = mean_squared_error(linpredictions, df[target])
lin_mse = mean_squared_error(lin_predictions, df[target])
#print(lin_mse)
import pandas as pd