> For the complete documentation index, see [llms.txt](https://ibm-developer.gitbook.io/python-and-analytics/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ibm-developer.gitbook.io/python-and-analytics/workshop-feb-2021/data-science-basics/titanic.md).

# Case-Study: DataScience through Titanic

In this section, will explore a notebook that looks at the popular [Titanic dataset](https://www.openml.org/d/40945), manipulates the data, and finally creates a predictive model to predict which of the passengers will survive the disaster and which won't.

Unlike many other notebooks that are written by the experts for the experts, this notebook is written to explore only what we need and explain each concept as they arise through our journey. So long as you have completed the previous sections, you should find this notebook easy to follow.

## Load and Run a Notebook

* In your project, click `Add to project` and choose `Notebook`:

![Add notebook](https://3186787146-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MGiMaRFLA6YbdmTsmru%2Fsync%2F864007c492b88e870df2cc0c682861e8201b0ead.png?generation=1599579707929887\&alt=media)

* Choose New notebook `From URL`. Give your notebook a name, select the smallest runtime, copy the following URL, and click \`Create.&#x20;

  ```
  https://github.com/IBM/python-and-analytics/blob/workshop-feb-2021/notebooks/Titanic.ipynb
  ```

![Notebook from URL](https://3186787146-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MGiMaRFLA6YbdmTsmru%2Fsync%2Fd7037584ff483e3f2018eb925fb3e1711b90215d.jpg?generation=1614136356118686\&alt=media)

Spend some time looking through the sections of the notebook to get an overview. A notebook is composed of text (markdown or heading) cells and code cells. The markdown cells provide comments on what the code is designed to do.

You will run cells individually by highlighting each cell, then either click the `Run` button at the top of the notebook or hitting the keyboard short cut to run the cell (Shift + Enter but can vary based on platform). While the cell is running, an asterisk (`[*]`) will show up to the left of the cell. When that cell has finished executing a sequential number will show up (i.e. `[17]`).
