This project is a π€ machine learning model that predicts the likelihood of survival for passengers on the Titanic ship based on various features.
The machine learning model is built using scikit-learn
The dataset used for training and testing the model is included in the directory. The dataset includes the following columns:
Pclass
: Passenger class (1st, 2nd, or 3rd)Sex
: Gender of the passengerAge
: Age of the passengerSibSp
: Number of siblings/spouses aboardParch
: Number of parents/children aboardFare
: Passenger fareEmbarked
: Port of embarkation (C = Cherbourg, Q = Queenstown, S = Southampton)
To use this project, clone the repository and install the required dependencies:
git clone https://github.com/omarnahdi/titanic-survivor-prediction.git
cd titanic-survivor-prediction
We welcome contributions from the community! If you'd like to contribute to the project, follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix: git checkout -b feature-name.
- Make your changes and commit them: git commit -m 'Add feature XYZ'.
- Push to your branch: git push origin feature-name.
- Create a pull request on GitHub.
Please ensure your code follows the project's coding standards and include tests if applicable.