Skip to content

Commit 319b449

Browse files
committed
convert to string before addition
1 parent 274a95e commit 319b449

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gnss_lib_py/utils/visualizations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def plot_metric(navdata, *args, groupby=None, avg_y=False, fig=None,
139139
x_data = x_unique
140140
y_data = y_avg
141141
# change name
142-
group = group + "_avg"
142+
group = str(group) + "_avg"
143143
axes.plot(x_data, y_data,
144144
label=_get_label({groupby:group}),
145145
markeredgecolor = markeredgecolor,

0 commit comments

Comments
 (0)