Skip to content

Commit

Permalink
Added both .md and .html
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahita97 authored Dec 13, 2021
1 parent a0356f8 commit c29fc23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This make file runs the full analysis for
# the forest fire size prediction process.

all: reports/forest_fire_analysis_report.html tests
all: reports/forest_fire_analysis_report.md tests


# Inital cleaning of the data and split into train and test sets
Expand All @@ -23,7 +23,7 @@ results/test_results.png results/predictions.png : src/evaluate.py results/tuned
python src/evaluate.py --test_data=data/processed/test_data.csv --results_path=results/

# Compile the results into a report
reports/forest_fire_analysis_report.html : results/EDA_day_plot.png results/EDA_pair_plot.png results/EDA_season_plot.png \
reports/forest_fire_analysis_report.md : results/EDA_day_plot.png results/EDA_pair_plot.png results/EDA_season_plot.png \
results/cv_results.png results/outlier_detection.png results/test_results.png \
results/predictions.png reports/forest_fire_analysis_report.Rmd reports/report_sections/*

Expand All @@ -35,4 +35,4 @@ tests : tests/* src/clean_n_split.py src/download_data.py src/EDA.py src/evaluat
pytest --disable-warnings tests/

clean:
rm -rf data/processed/*.csv results/* reports/forest_fire_analysis_report.html
rm -rf data/processed/*.csv results/* reports/forest_fire_analysis_report.md reports/forest_fire_analysis_report.html

0 comments on commit c29fc23

Please sign in to comment.