Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .gitignore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

# Created by https://www.toptal.com/developers/gitignore/api/jupyternotebooks,macos
# Edit at https://www.toptal.com/developers/gitignore?templates=jupyternotebooks,macos

### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/

.ipynb_checkpoints
*/.ipynb_checkpoints/*

# IPython
profile_default/
ipython_config.py

# Remove previous ipynb_checkpoints
# git rm -r .ipynb_checkpoints/

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

config.py
__pychace__

# End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks,macos
47 changes: 47 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<img src="https://bit.ly/2VnXWr2" alt="Ironhack Logo" width="100"/>

# Title of My Project
*Nathalie Hubl*
*Breast Cancer Prediction*
*Data Analytics Bootcamp - Remote MAR2021*

## Content
- [Project Description](#project-description)
- [Questions & Hypotheses](#questions-hypotheses)
- [Dataset](#dataset)
- [Workflow](#workflow)
- [Organization](#organization)
- [Links](#links)

## Project Description
Information found online about a study made by the Wisconsin University. With the information provided, try to predict if the cancer is benign or malignant, depending on specific features. Tried 4 different models, with diff Scalers.

## Questions & Hypotheses
Is it possible to predict breast cancer depending on features (breast mass).

## Dataset
I found data in https://www.kaggle.com/uciml/breast-cancer-wisconsin-data and https://archive.ics.uci.edu/ml/datasets/Breast+Cancer+Wisconsin+%28Diagnostic%29.

## Workflow
Outline the workflow you used in your project. What are the steps you went through?
- find a topic
- cleaning the data
- analysis and conclusions
- plots and visual elements
- building the different models and trying them
- prepare presentation
- prepare files, folder and readme file

## Organization
How did you organize your work? Did you use any tools like a kanban board?
I followed the Workflow points mentioned above.

What does your repository look like? Explain your folder and file structure.
Apart from the .gitignore and the Readme file, you will find a folder with the code (your-code) and 1 with the data. Also in the 'your-code' folder you'll find the plots I used for the presentation and 1 further jupiter notebook including extra infos about the dataset.

## Links
Include links to your repository, slides and kanban board. Feel free to include any other links associated with your project.

[Repository](https://github.com/atha13/Project-Week-8-Final-Project)
[Slides](https://www.canva.com/design/DAEfAQqZDRc/share/preview?token=b4GViccdsfQvRuh4wnKFYw&role=EDITOR&utm_content=DAEfAQqZDRc&utm_campaign=designshare&utm_medium=link&utm_source=sharebutton)

570 changes: 570 additions & 0 deletions data/breast_cancer_wisconsin.csv

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions your-project/.gitignore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

# Created by https://www.toptal.com/developers/gitignore/api/jupyternotebooks,macos
# Edit at https://www.toptal.com/developers/gitignore?templates=jupyternotebooks,macos

### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/

.ipynb_checkpoints
*/.ipynb_checkpoints/*

# IPython
profile_default/
ipython_config.py

# Remove previous ipynb_checkpoints
# git rm -r .ipynb_checkpoints/

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

config.py
__pychace__

# End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks,macos
Loading