Andrea Maldonado commited on
Commit
89fab1d
·
1 Parent(s): 405aaff

Adds boxplot_width param

Browse files
config_files/algorithm/feature_extraction.json CHANGED
@@ -6,6 +6,7 @@
6
  "output_path": "output/plots",
7
  "real_eventlog_path": "data/BaselineED_feat.csv",
8
  "plot_type": "boxplot",
9
- "font_size": 24
 
10
  }
11
  ]
 
6
  "output_path": "output/plots",
7
  "real_eventlog_path": "data/BaselineED_feat.csv",
8
  "plot_type": "boxplot",
9
+ "font_size": 24,
10
+ "boxplot_width":10
11
  }
12
  ]
utils/param_keys/plotter.py CHANGED
@@ -3,3 +3,4 @@
3
  # Analysis Files
4
  REAL_EVENTLOG_PATH = 'real_eventlog_path'
5
  FONT_SIZE = 'font_size'
 
 
3
  # Analysis Files
4
  REAL_EVENTLOG_PATH = 'real_eventlog_path'
5
  FONT_SIZE = 'font_size'
6
+ BOXPLOT_WIDTH = 'boxplot_width'