This project uses the famous Titanic dataset to predict passenger survival using the Decision Tree Algorithm. It demonstrates data preprocessing, feature selection, model training, and evaluation.
The Titanic dataset is available in Seaborn. It includes details like age, gender, class, fare, and survival status of passengers.
- Decision Tree Classifier
- Load and explore the dataset from Seaborn.
- Handle missing data and prepare features.
- Train a Decision Tree model.
- Evaluate accuracy and visualize results.
The model successfully predicts passenger survival based on features such as age, gender, and passenger class.
- Python
- Seaborn
- Pandas
- Scikit-learn
- Matplotlib