Skip to content

Commit

Permalink
CAP: working version for pos-beam length
Browse files Browse the repository at this point in the history
  • Loading branch information
9and3 committed Dec 3, 2024
1 parent e4b843f commit abd553a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions eval/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def main(
medianprops = dict(color=clr_markers)

fig, ax = plt.subplots(figsize=(4.2, 5.8))

df_joints_dataset.boxplot(
column='mean',
by='beam_length_bin',
Expand All @@ -206,11 +207,11 @@ def main(
)
plt.suptitle('')
plt.title('(A)')
plt.xlabel('beam length range (m)')
plt.ylabel('error (mm)')
plt.xlabel('beam length range (m)', fontsize=12)
plt.ylabel('error (mm)', fontsize=12)
plt.grid()

ax.tick_params(axis='both', which='both', direction='in', top=True, right=True)
ax.tick_params(axis='both', which='both', direction='in', top=True, right=True, labelsize=11, pad=8)
ax.yaxis.set_major_locator(MaxNLocator(integer=True))

plt.tight_layout()
Expand Down

0 comments on commit abd553a

Please sign in to comment.