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

Categories with long names in contingency tables are displayed over each other #56

Closed mbelak-dtml closed 1 year ago

mbelak-dtml commented 1 year ago

Steps to reproduce:

import edvart
dataset = edvart.example_datasets.dataset_meteorite_landings()
dataset = dataset.replace({'Found': 'VeryLongString'})
report = edvart.Report(dataset).add_bivariate_analysis(subsections=[2]).show()

image