==============================
Add business value
Workflow diagram
| "table_source" | "table_source" |
|---|---|
| columns | columns |
| columns | columns |
detailed solution steps
------------
├── custom_libraries <- Customized code and scripts
├── data
├── docs <- Config files to generate documentation
├── notebooks <- Jupyter notebooks.
│
├── references <- Data dictionaries, manuals, and all other explanatory materials.
│
├── src <- Source code for use in this project.
│ ├── __init__.py <- Makes src a Python module
│ │
│ ├── README.md <- Source README.md with Workflow Diagram for engineering purposes
│ │
│ ├── config.py <- General SRC configuration
│ │
│ ├── data <- Scripts to download or generate data
│ │
│ ├── models <- Scripts to train models
│ │
│ ├── test <- Test scripts
│ │
│ ├── utils <- all accessing functions, models, submodules
│ │
│ ├── validation <- Validation Scripts
│ │
│ └── visualization <- Scripts to create exploratory and results oriented visualizations
│ └── visualize.py
│
├── README.md <- The top-level README for developers using this project.
├── requirements.txt <- The requirements file for reproducing the analysis environment
------------