@@ -251,11 +251,11 @@ def plot_estimates(
251
251
if msr_df is not None :
252
252
# Plot the measurements on both plots
253
253
pos_fig = overlay_measurements (
254
- msr_df , title , time_col_name , fig = pos_fig , show = False
254
+ pos_fig , msr_df , title , time_col_name , show = False
255
255
)
256
256
257
257
vel_fig = overlay_measurements (
258
- msr_df , title , time_col_name , fig = vel_fig , show = False
258
+ vel_fig , msr_df , title , time_col_name , show = False
259
259
)
260
260
261
261
if html_out :
@@ -458,11 +458,11 @@ def plot_covar(
458
458
if msr_df is not None :
459
459
# Plot the measurements on both plots
460
460
pos_fig = overlay_measurements (
461
- msr_df , title , time_col_name , fig = pos_fig , show = False
461
+ pos_fig , msr_df , title , time_col_name , show = False
462
462
)
463
463
464
464
vel_fig = overlay_measurements (
465
- msr_df , title , time_col_name , fig = vel_fig , show = False
465
+ vel_fig , msr_df , title , time_col_name , show = False
466
466
)
467
467
468
468
if html_out :
@@ -681,7 +681,7 @@ def plot_residuals(
681
681
if msr_df is not None :
682
682
# Plot the measurements on both plots
683
683
fig = overlay_measurements (
684
- msr_df , title , time_col_name , fig = fig , show = False
684
+ fig , msr_df , title , time_col_name , show = False
685
685
)
686
686
687
687
finalize_plot (
0 commit comments