Skip to content

Commit

Permalink
Update Titanic-Dataset.qmd
Browse files Browse the repository at this point in the history
  • Loading branch information
qualiaMachine committed Oct 7, 2024
1 parent 42d1e34 commit d954283
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Applications/EDA-examples/Titanic-Dataset.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ The Titanic dataset is a well-known dataset that contains information about the

The problem we are exploring is binary classification: predicting whether a passenger survived based on their features.The goal of this EDA is to uncover insights that can guide our modeling decisions, such as identifying important features, handling missing data, and addressing bias in the dataset (e.g., imbalances in survival rate by gender or class).

## Set up Quarto environment
```{bash}
#| id: install-jupyter
# This command ensures that the necessary Jupyter and nbformat packages are installed in the Quarto environment.
# Without these packages, the Python code cells won't execute properly.
pip install jupyter nbformat
```

## Step 0: Looking Up Each Feature
Before diving into the analysis, it's important to understand what each feature in the dataset represents. This ensures we're interpreting the data correctly and allows us to make informed decisions during the analysis.

Expand Down

0 comments on commit d954283

Please sign in to comment.