This repository contains two scripts for visualizing cost distributions and tornado diagrams. The first script generates PDF and CDF plots based on expected value and standard deviation. The second script cleans WBS data and plots a tornado diagram.
Example WBS data source: https://docs.google.com/spreadsheets/d/1yTV-oQwlPQQAkIKiMaMXk4J_56CKUK3r6yJO3o5KUvE/edit?gid=1507483010#gid=1507483010
git clone https://github.com/ffreider/cost_estimation.git
cd cost_estimation- Python 3.x
- numpy
- matplotlib
- scipy
- pandas
You can install the required libraries using pip:
pip install -r requirements.txtTo run the script:
python plot_pdf_and_cdf.py <expected_value> <std_deviation>Example:
python plot_pdf_and_cdf.py 2173391 833540To run the script:
python plot_tornado.py <file_path> <level>Example:
python plot_tornado.py "path_to_file.csv" 2For any questions or suggestions, please contact freider.floan@gmail.com

