Skip to content

Instantly share code, notes, and snippets.

@bshabashFD
Created June 27, 2020 21:14
Show Gist options
  • Save bshabashFD/85030d7d612f8853700f16011b97c972 to your computer and use it in GitHub Desktop.
Save bshabashFD/85030d7d612f8853700f16011b97c972 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(15, 5))
sns.distplot(my_mcmc.get_samples()['weight1'].numpy(), kde=False, label="weight1")
sns.distplot(my_mcmc2.get_samples()['weight2'].numpy(), kde=False, label="weight2")
plt.legend()
plt.xlabel("Weight (kg)")
plt.ylabel("Observed Samples")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment