Kaggle Competitions¶
Kaggle is a great way to learn and practice data science. Below you can find links to two contests to get you started as well as tutorials for helping improve your solutions in both Python and R.
Titanic: Learning from Disaster¶
Competition Description: The sinking of the RMS Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the Titanic sank after colliding with an iceberg, killing 1502 out of 2224 passengers and crew. This sensational tragedy shocked the international community and led to better safety regulations for ships.
One of the reasons that the shipwreck led to such loss of life was that there were not enough lifeboats for the passengers and crew. Although there was some element of luck involved in surviving the sinking, some groups of people were more likely to survive than others, such as women, children, and the upper-class.
In this challenge, we ask you to complete the analysis of what sorts of people were likely to survive. In particular, we ask you to apply the tools of machine learning to predict which passengers survived the tragedy.
Tutorials:
- Titanic Data Science Solutions: The notebook walks us through a typical workflow for solving data science competitions at sites like Kaggle.
- Interactive Data Science Tutorial: Based on Titanic Kaggle competition.
- Machine Learning and Scikit-Learn: This notebook covers the basic Machine Learning process in Python step-by-step. Go from raw data to at least 78% accuracy on the Titanic Survivors dataset.
- XGBoost Example: Popular approach to improving classification models and responsible for many winning solutions.
House Prices: Advanced Regression Techniques¶
Competition Description
Ask a home buyer to describe their dream house, and they probably won’t begin with the height of the basement ceiling or the proximity to an east-west railroad. But this playground competition’s dataset proves that much more influences price negotiations than the number of bedrooms or a white-picket fence.
With 79 explanatory variables describing (almost) every aspect of residential homes in Ames, Iowa, this competition challenges you to predict the final price of each home.
Tutorials:
- Fun with Real Estate Data: Linear, Random Forest, and XGBoost models in R for predicting sale prices.
- XGBoost and Parameter Tuning: Example in R of using XGBoost and Hyperparameter tuning to predict the housing prices.
- A Study on Regression Models: This kernel is an attempt to use every trick in the books to unleash the full power of Linear Regression, including a lot of preprocessing and a look at several Regularization algorithms.