Skip to content

Commit

Permalink
Add dependency diagram to README, edit gitignore to ignore .Rhistory
Browse files Browse the repository at this point in the history
  • Loading branch information
athy9193 committed Dec 9, 2020
1 parent 77ab2bb commit 0dbcf5a
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
**.Rproj
**.Rproj.user/
.Rproj.user
.Rhistory
43 changes: 43 additions & 0 deletions Makefile.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
digraph G {
n2[label="all", color="red"];
n5[label="data/processed/processed.csv", color="red"];
n13[label="data/processed/processed_test.csv", color="red"];
n12[label="data/processed/processed_train.csv", color="red"];
n7[label="data/raw/winequality-red.csv", color="green"];
n9[label="data/raw/winequality-white.csv", color="green"];
n4[label="eda/wine_eda.py", color="green"];
n17[label="reports/reports.Rmd", color="green"];
n16[label="reports/reports.md", color="green"];
n18[label="reports/wine_refs.bib", color="green"];
n14[label="results/best_Model.pkl", color="red"];
n10[label="results/final_model_quality.png", color="red"];
n3[label="results/wine_quality_rank_per_feature.png", color="red"];
n8[label="src/download_data.py", color="green"];
n15[label="src/fit_wine_quality_predict_model.py", color="green"];
n6[label="src/pre_processing_wine.py", color="green"];
n11[label="src/wine_quality_test_results.py", color="green"];
n16 -> n2 ;
n10 -> n2 ;
n3 -> n2 ;
n7 -> n5 ;
n9 -> n5 ;
n6 -> n5 ;
n7 -> n13 ;
n9 -> n13 ;
n6 -> n13 ;
n7 -> n12 ;
n9 -> n12 ;
n6 -> n12 ;
n8 -> n7 ;
n8 -> n9 ;
n17 -> n16 ;
n18 -> n16 ;
n12 -> n14 ;
n15 -> n14 ;
n13 -> n10 ;
n12 -> n10 ;
n14 -> n10 ;
n11 -> n10 ;
n5 -> n3 ;
n4 -> n3 ;
}
Binary file added Makefile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ conda activate wine_env
- tidyverse==1.3.0


## Dependency Diagram

The diagram below shows the structure of how the project and this repo is structured to produce the final results.

![](Makefile.png)



## License

The Wine Quality Predictor materials here are licensed under the
Expand Down
Empty file removed reports/.Rhistory
Empty file.

0 comments on commit 0dbcf5a

Please sign in to comment.