Skip to content

Instantly share code, notes, and snippets.

@ogyalcin
Created August 2, 2018 12:25
Show Gist options
  • Select an option

  • Save ogyalcin/dbe9d452d9f09bd1de2366a171fda082 to your computer and use it in GitHub Desktop.

Select an option

Save ogyalcin/dbe9d452d9f09bd1de2366a171fda082 to your computer and use it in GitHub Desktop.
Make Predictions and Save It to Csv File
preds = model.predict(test)
results = ids.assign(Survived=preds)
results.to_csv('titanic_submission.csv',index=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment