Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
plot_cols = [col for col in df_out.columns if 'error_avg' in col]
print(plot_cols)
# plot the new data
fig, ax = plt.subplots(num=None, figsize=(14, 6), dpi=80, facecolor='w', edgecolor='k')
size = len(df_out)
for col in plot_cols:
ax.plot(range(0,size), df_out[col], '-', linewidth=0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment