sel-cmp: Visual corrections

This commit is contained in:
Manos Katsomallos 2021-10-13 16:35:35 +02:00
parent 2481a751ae
commit 533ff212c3
3 changed files with 54 additions and 56 deletions

View File

@ -123,14 +123,14 @@ def main(args):
label='Skip',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_s,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
plt.bar(
@ -140,14 +140,14 @@ def main(args):
label='Uniform',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_u,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
plt.bar(
@ -157,16 +157,15 @@ def main(args):
label='Adaptive',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_a,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
path = str('../../rslt/bgt_cmp/' + d)
# Plot legend

View File

@ -118,14 +118,14 @@ def main(args):
label='Skip',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_s,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
plt.bar(
@ -135,14 +135,14 @@ def main(args):
label='Uniform',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_u,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
plt.bar(
@ -152,16 +152,15 @@ def main(args):
label='Adaptive',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_a,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
path = str('../../rslt/bgt_cmp/' + d)
# Plot legend

View File

@ -142,14 +142,14 @@ def main(args):
label='Skip',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_s,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
plt.bar(
@ -159,14 +159,14 @@ def main(args):
label='Uniform',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_u,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width
plt.bar(
@ -176,14 +176,14 @@ def main(args):
label='Adaptive',
linewidth=lmdk_lib.line_width
)
plt.bar(
plt.plot(
x_i + x_offset,
mae_a,
bar_width,
color='none',
linestyle='dashed',
edgecolor='#bdbdbd',
linewidth=lmdk_lib.line_width
marker='_',
markersize=lmdk_lib.marker_size + lmdk_lib.line_width,
markeredgewidth=lmdk_lib.line_width,
markeredgecolor='#bdbdbd',
linestyle='none',
)
x_offset += bar_width