Created
January 23, 2019 21:34
-
-
Save andrewm4894/50bf96cc87ac37079c55516f4068a4b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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