-
Notifications
You must be signed in to change notification settings - Fork 9
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
HexBin (and default viz. style) fails with less than ~25 points #16
Comments
Hi @SebastianCallh and thanks for the report! Is this error repeatable or is it sensitive to the random numbers drawn? |
Hi! No, it is not sensitive to random numbers and I can reproduce it with other data |
Hi @SebastianCallh, I haven't been able to reproduce this issue. Do you have a Manifest.toml file that you could share? |
Curious! Here is a gist with a manifest. https://gist.github.com/SebastianCallh/6c13b831d004b211814fd063dcfd3937 |
Okay I did some more testing and it only seems to happen for small inputs. And the data frame is also a red herring. E.g. using CairoMakie, PairPlots
df = (;x = randn(1000), y = randn(1000))
pairplot(df) works but using CairoMakie, PairPlots
df = (;x = randn(10), y = randn(10))
pairplot(df) fails |
Ah great catch, thanks! pairplot((;
a = randn(10),
b = randn(10)
)=>(PairPlots.HexBin(),)) fails Whereas the following work: pairplot((;
a = randn(10),
b = randn(10)
)=>(PairPlots.Scatter(),))
pairplot((;
a = randn(10),
b = randn(10)
)=>(PairPlots.Contour(),))
airplot((;
a = randn(10),
b = randn(10)
)=>(PairPlots.Hist(),)) |
I've filed an issue upstream with Makie. |
Closed upstream in Makie. hopefully a release will be tagged soon. |
Hi! Here is an MRE.
Package versions
Stack trace
The text was updated successfully, but these errors were encountered: