-
Notifications
You must be signed in to change notification settings - Fork 8
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
Contourf for multiple histograms only showing one filled contour #61
Comments
Hi @odunbar , thanks for the bug report. The default styles for multi-series histograms has changed in the latest version (Note: we don't consider changes to the default styles a breaking change). Do you get the desired result if you pass the following? p = pairplot(
PairPlots.Series(data_rf, color=Makie.wong_colors(0.5)[1]) => (PairPlots.Contourf(sigmas = 1:1:3),),
PairPlots.Series(data_gp, , color=Makie.wong_colors(0.5)[2]) => (PairPlots.Contourf(sigmas = 1:1:3),),
) BTW as an aside, if you want more or easier control over the labels in the plots, you can pass a dictionary e.g.: tbl = (;a = randn(100), b=randn(100))
pairplot(
tbl,
labels=Dict(:a=>"series A", :b=>"series B")
) |
This does not seem to like the color optional argument: ERROR: LoadError: MethodError: no method matching (Plot{…})(::@NamedTuple{…}; color::ColorTypes.RGBA{…})
Closest candidates are:
(Plot{Func})(::Tuple, ::Dict) where Func got unsupported keyword argument "color"
@ Makie ~/.julia/packages/Makie/6c4lt/src/interfaces.jl:260 |
Issue
Hi folks, thanks for the great package! I'm trying to compare two different 5D histograms. In the case that there is more than one histogram the Contourf option does not provide a gradient of fill-alphas, all appear filled. I have plots below to illustrate the issue.
I find this bug on PairPlots.jl
v2.9+
but not onv2.8.0
.Apologies I dont have a dataset for MWE yet but the dataset are created as
Desired result from v2.8.0
Received result from v2.9.2
Note: v2.9.2 works fine for a single histogram
Some other relevant packages setup
On
julia v1.10.5
The text was updated successfully, but these errors were encountered: