clone https://github.com/Melak2017/Causality-Inference-
pip install -r requirements.txt
.
├── .github/workflows # github actions
├── .vscode # collection of folders that are opened in a VS Code window.
├── .dvc # for data versioning.
├── data # data directory
├── logs # log files
├── notebooks # directory contaning notebok files.
│ ├── causal_analysis.ipynb # notebook containing causal infrerence explanatory analysis.
│ ├── data_analysis.ipynb # notebook for explanatory data analysis of the dataset.
│ └── data_cleaning # notebook for data cleaning and preparation.
│
├── screenshots # A sample screenshots of analysis result.
├── scripts # script files.
| ├── data_cleaner.py # a python script for cleaning pandas dataframes.
│ ├── data_loader.py # a python script for loading csv and excel files to a dataframe.
│ ├── data_preview.py # a python script for to geting information about the data.
│ ├── plots.py # a python script for plotting dataframes.
│ └── ScalarNormalizer.py # a python script for normalizing model feature.
|
├── tests # directory for unit testing
| └── test_get_preview.py # unit-test file
├── requirements.txt # a text file lsiting the projet's dependancies
├── .gitignore # files to ignore when committing
├── setup.py # a configuration file for installing the scripts as a package
├──LICENSE # license file
├── .dvcigonre # files to ignore when committing
└── README.md # Markdown text with explanation of the project and the structure.