diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-05-25 15:32:17 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-05-25 15:32:17 +0100 |
| commit | 08d3ea5916864f6f4143e6c1f622f2dd87d21d27 (patch) | |
| tree | 72aa9ab50a8c87fbe4dda0998a644aedd5c426aa /Makefile | |
| parent | Correct calculation of F measure (diff) | |
| download | TCPDBench-08d3ea5916864f6f4143e6c1f622f2dd87d21d27.tar.gz TCPDBench-08d3ea5916864f6f4143e6c1f622f2dd87d21d27.zip | |
Add descriptive statistics code and results
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 37 |
1 files changed, 36 insertions, 1 deletions
@@ -237,7 +237,14 @@ clean_rankplots: CONSTANT_TARGETS = $(CONST_DIR)/sigtest_global_best_cover_uni.tex \ $(CONST_DIR)/sigtest_global_best_f1_uni.tex \ $(CONST_DIR)/sigtest_global_default_cover_uni.tex \ - $(CONST_DIR)/sigtest_global_default_f1_uni.tex + $(CONST_DIR)/sigtest_global_default_f1_uni.tex \ + $(CONST_DIR)/SeriesLengthMin.tex \ + $(CONST_DIR)/SeriesLengthMax.tex \ + $(CONST_DIR)/SeriesLengthMean.tex \ + $(CONST_DIR)/UniqueAnnotationsMin.tex \ + $(CONST_DIR)/UniqueAnnotationsMax.tex \ + $(CONST_DIR)/UniqueAnnotationsMean.tex \ + $(CONST_DIR)/UniqueAnnotationsStd.tex const-dir: mkdir -p $(CONST_DIR) @@ -260,6 +267,34 @@ $(CONST_DIR)/sigtest_global_default_f1_uni.tex: $(TABLE_DIR)/default_f1_uni_full $(SCRIPT_DIR)/significance.py | const-dir python $(SCRIPT_DIR)/significance.py -i $< -o $@ --type best --mode global +$(CONST_DIR)/SeriesLengthMin.tex: $(SCRIPT_DIR)/descriptive_length.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t min > $@ + +$(CONST_DIR)/SeriesLengthMax.tex: $(SCRIPT_DIR)/descriptive_length.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t max > $@ + +$(CONST_DIR)/SeriesLengthMean.tex: $(SCRIPT_DIR)/descriptive_length.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t mean > $@ + +$(CONST_DIR)/UniqueAnnotationsMin.tex: $(SCRIPT_DIR)/descriptive_annotations.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t min > $@ + +$(CONST_DIR)/UniqueAnnotationsMax.tex: $(SCRIPT_DIR)/descriptive_annotations.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t max > $@ + +$(CONST_DIR)/UniqueAnnotationsMean.tex: $(SCRIPT_DIR)/descriptive_annotations.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t mean > $@ + +$(CONST_DIR)/UniqueAnnotationsStd.tex: $(SCRIPT_DIR)/descriptive_annotations.py \ + $(DATASET_SUMMARIES) | const-dir + python $< -s $(SUMMARY_DIR) -t std > $@ + clean_constants: rm -f $(CONSTANT_TARGETS) |
