Skip to content
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

Clustered subplots do not work with Brunel #761

Open
nmanchev opened this issue Apr 11, 2019 · 0 comments
Open

Clustered subplots do not work with Brunel #761

nmanchev opened this issue Apr 11, 2019 · 0 comments

Comments

@nmanchev
Copy link

The problem happens when clustering charts by subplots using the Brunel renderer.

Expected behavior

Here is the correct output (using matplotlib)

image

Actual behavior

Changing the renderer to Brunel produces this instead

image

Steps to reproduce the behavior

Run the following code

import pixiedust
from sklearn import datasets
import pandas as pd
import numpy as np

diabetes = datasets.load_diabetes()
data = pd.DataFrame(data= np.c_[diabetes['data'], diabetes['target']],
                    columns= diabetes['feature_names'] + ['target'])
display(data)

Choose bar chart
Set keys = bmi
Set values = bp
Choose brunel
Set Cluster by to sex
Set Type to subplots

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant