5980329d949dd0d9764357a70c36da44645ce503,google_analytics/model_template.py,,,#,5

Before Change



final_pred = final_test["fullVisitorId"]

final_pred[train_yht] = test_y


final_pred = final_pred.sort(["fullVisitorId"])

After Change


final_by_ind = final_by_ind.reset_index()

//merge the predictions with the sample sub
submission = submission.merge(final_by_ind, on = "fullVisitorId", how = "left")
//fill nas and move to right column name
submission["PredictedLogRevenue"] = submission["test_pred"].fillna(0.0)
submission = submission.drop(["test_pred"], axis = 1)

//submit the output
submission.to_csv("cam_lightgbm_pred2.csv", index = False)


Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: CNuge/kaggle-code
Commit Name: 5980329d949dd0d9764357a70c36da44645ce503
Time: 2018-10-18
Author: nugentc@uoguelph.ca
File Name: google_analytics/model_template.py
Class Name:
Method Name:


Project Name: CNuge/kaggle-code
Commit Name: 5980329d949dd0d9764357a70c36da44645ce503
Time: 2018-10-18
Author: nugentc@uoguelph.ca
File Name: google_analytics/xgb_predict_spending.py
Class Name:
Method Name:


Project Name: nilmtk/nilmtk
Commit Name: f995ae8ee2aaf365eb3b147e4afb1f7eacc17ee6
Time: 2014-01-06
Author: nipunreddevil@gmail.com
File Name: nilmtk/dataset/dataset.py
Class Name: DataSet
Method Name: export_csv