Skip to content

Instantly share code, notes, and snippets.

@andrewm4894
Created January 23, 2019 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewm4894/50bf96cc87ac37079c55516f4068a4b6 to your computer and use it in GitHub Desktop.
Save andrewm4894/50bf96cc87ac37079c55516f4068a4b6 to your computer and use it in GitHub Desktop.
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