Skip to content

Instantly share code, notes, and snippets.

@DoctorLoop
Created August 4, 2020 11:10
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 DoctorLoop/2a5e95a68a29315f167e0e875e7fae16 to your computer and use it in GitHub Desktop.
Save DoctorLoop/2a5e95a68a29315f167e0e875e7fae16 to your computer and use it in GitHub Desktop.
plt.hist(underdone['time'], color='r', alpha=0.6, histtype='step', label='underdone', fill=True, linewidth=2)
plt.hist(softboiled['time'], color='y', alpha=0.6, histtype='step', label='soft-boiled', fill=True, linewidth=2)
plt.hist(hardboiled['time'], color='g', alpha=0.6, histtype='step', label='hard-boiled', fill=True, linewidth=2)
plt.xlabel('time (g)')
plt.ylabel("number examples")
plt.legend()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment