This project predicts whether a passenger survived the Titanic disaster using a Decision Tree Classifier.
- Titanic Dataset
- 891 passenger records
- 12 features
- Loaded dataset using Pandas
- Explored the data
- Handled missing values
- Removed unnecessary columns
- Split data into training and testing sets
- Trained a Decision Tree Classifier
- Evaluated model performance
- Predicted survival for a new passenger
- Python
- Pandas
- Scikit-learn
- Jupyter Notebook
Accuracy: 65.36%
complete machine learning workflow, including data preprocessing, model training, evaluation, and prediction using Python.