-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plot two datasets together #130
Comments
You can do that using the fig = corner.corner(dataset1, ..., color="C0", weights=np.ones(len(dataset1))/len(dataset1))
corner.corner(dataset2, ..., color="C1", fig=fig, weights=np.ones(len(dataset2))/len(dataset2)) If you have different numbers of points you'll need to use the |
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to plot together (with different colors) two different data sets?
I think it could be very useful to show the differences in two datasets.
The text was updated successfully, but these errors were encountered: