Skip to content

Commit 5d44139

Browse files
committed
rq plot fonts fixed
1 parent 2b030ce commit 5d44139

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.vscode
2+
DeepHyperion-BNG/data/member_seeds/initial_pool/
3+
DeepHyperion-BNG/data/member_seeds/initial_population/
4+
DeepHyperion/initial_pool/
5+
DeepHyperion-BNG/core/__pycache__/
6+
experiments/data/beamng/
7+
experiments/data/mnist/
8+
experiments/plots/
9+
DeepHyperion-BNG/logs/
10+
experiments/__pycache__/

experiments/rq1.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# This is the code for plotting the figures for RQ1. It is optimized towards plotting exactly those figures
33
# Use data_analysis.py for explorative data analysis
44
#
5+
import matplotlib
6+
matplotlib.rcParams['pdf.fonttype'] = 42
7+
matplotlib.rcParams['ps.fonttype'] = 42
58

69
from plotting_utils import load_data_from_folder, create_custom_palette, \
710
filter_data_and_plot_as_boxplots, filter_data_by_tag, store_figure_to_paper_folder

experiments/rq2.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# This is the code for plotting the figures for RQ1. It is optimized towards plotting exactly those figures
33
# Use data_analysis.py for explorative data analysis
44
#
5+
import matplotlib
6+
matplotlib.rcParams['pdf.fonttype'] = 42
7+
matplotlib.rcParams['ps.fonttype'] = 42
58

69
from plotting_utils import load_data_from_folder, create_custom_palette, \
710
filter_data_and_plot_as_boxplots, filter_data_by_tag, store_figure_to_paper_folder

experiments/rq3.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# This is the code for plotting the figures for RQ1. It is optimized towards plotting exactly those figures
33
# Use data_analysis.py for explorative data analysis
44
#
5+
import matplotlib
6+
matplotlib.rcParams['pdf.fonttype'] = 42
7+
matplotlib.rcParams['ps.fonttype'] = 42
58

69
from plotting_utils import load_probability_maps, generate_average_probability_maps, set_probability_maps_axes, store_figure_to_paper_folder
710
import matplotlib.pyplot as plt

0 commit comments

Comments
 (0)