datamole-ai / edvart

An open-source Python library for Data Scientists & Data Analysts designed to simplify the exploratory data analysis process. Using Edvart, you can explore data sets and generate reports with minimal coding.
https://datamole-ai.github.io/edvart/
MIT License
48 stars 7 forks source link

Categorical color column not working in `ParallelCoordinates` & `ParallelCategories` #18

Open mbelak-dtml opened 1 year ago

mbelak-dtml commented 1 year ago

If a column which is both categorical and numeric (e.g. 0/1) in ParallelCoordinates or ParallelCategories, it is treated as numeric with a numeric axis shown.

Example

Code

import edvart

edvart.Report(
    edvart.example_datasets.dataset_titanic(),
    use_default_sections=False,
).add_multivariate_analysis(
    color_col="Survived"
).show()

Output

image

mbelak-dtml commented 1 year ago

Resolved for the boolean case by #128.