House Price Prediction With Machine Learning in Python
House Price Prediction With Machine Learning in Python
House Price Prediction With Machine Learning in Python
# IMPORTING DATA
df = pd.read_csv('house.csv')
df.set_index('Id', inplace = True)
df.head(5)
plt.savefig('heatmap.png')
plt.show()