sklearn house price prediction (random forest)


I. Introduction

  1. Task objective: predict the final transaction price of the house based on the relevant data of the house attributes in csv
  2. Dataset: "Residential Attribute Dataset", taken from https://download.csdn.net/download/weixin_43721000/87785277
  3. Explanation of data set fields:
    There are detailed descriptions of fields in this file↓
    insert image description here

2. Implementation method

# pip install scikit-learn
from sklearn.ensemble import RandomForestRegressor
import numpy as np
import pandas 

Guess you like

Origin blog.csdn.net/weixin_43721000/article/details/131600072