add small changes to plot_flight_borderfs.py in order to correct plot in another devices

This commit is contained in:
Danila Gamkov 2025-04-25 14:51:11 +03:00
parent 0c8b1c5eca
commit 94ddbeb456

View File

@ -58,7 +58,7 @@ def plot_asotr_borders(path_with_data, ch, asotr_kit, begin, end, font=14, cmd=0
for i in range(len(channels)):
if channels[i] == 1:
ax.plot(data_dict["time_temp"],
data_dict['temp'].iloc[:,[i]],
data_dict['temp'].iloc[:,i],
marker[i],
linewidth=width[i],
label=legend[i],)