import pandas as pd
file_path = '../input/xxx.csv'
file_data = pd.read_csv(file_path)
print(file_data.describe())
print(file_data.columns)
price_data = file_data.SalePrice
print(price_data.head())
print(price_data)
columns_name = ['LotArea','SalePrice']
two_data = data[columns_name]
print(two_data.describe())
test = pd.read_csv('../input/test.csv')
test_X = test[predictor_cols]
predicted_prices = my_model.predict(test_X)
my_submission = pd.DateFrame({'Id':test.Id,'SalePrice':predicted_prices})
my_submission.to_csv('submission.csv',index=False)