Categorical features: * Town * Property Type * Residential TypeNumerical features 1. Assessed value(needed) 2. Sales Amount(target)
Comment: The R^2 is a measure of the goodness of fit of a model. R^2 value should be between 0 and 1. The result 1.0 from the LinearRegression, Lasso and ElasticNet means that the regression prediction perfectly fit the data and will perform well on unseen data.
Comment: The result shows that the model is intact. The LineaRegression and ElasticNet showed a closer approximate value than the Lasso model. Using a randomstate of 5 helps for better shuffling for good performance of the testing.