-
Notifications
You must be signed in to change notification settings - Fork 19
Fix planar plots with log norm #289
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
Conversation
TestingI was able to run the |
|
@andrewdnolan, could you take a quick look at this? A review by code inspection should be sufficient. |
We can't pass `vmin` and `vmax` along with `norm` that also tried to define the min and max: ``` ValueError: Passing a Normalize instance simultaneously with vmin/vmax is not supported. Please pass vmin/vmax directly to the norm when creating it. ``` This merge also drops an attempt to keep `vmin` positive for log norm, instead requiring the calling code to set reasonable bounds for log plots.
|
@andrewdnolan, could you have another look? |
andrewdnolan
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. This seems like the cleanest solution.
Thanks for catching this!
|
I verified that |
|
Thanks @andrewdnolan! |
We can't pass
vminandvmaxalong withnormthat also tried to define the min and max:This merge also drops an attempt to keep
vminpositive for log norm, instead requiring the calling code to set reasonable bounds for log plots.Checklist
Testingcomment in the PR documents testing used to verify the changes