0

I'm looking for js library that do same as "Detail" and "Column" tabs on "Data card" view at kaggle.com.

enter image description here

enter image description here

Something like datacomb but looking more pretty

Maybe Google opensourced that component, but I can't find it by googling or inspecting kaggle html. Please advice. If you know credible alternatives - names of them are also appreciated.

Desired features:

  • Autodetect data type and show convenient visual statistics dependind on column data type
  • Show min and max value at visual statistics if data is numeric
  • Show number of unique values, empty values, mean and std. deviation (in case if data is numeric), most common value and it's percentage
  • Flexible GUI with ability to filter columns to show and sort data by particular column

Links to datasets that have described tabs to see how it looks in live - [1], [2], [3]

P.S. Please don't minus this question if you think that it's off-topic. If moderators tell to move it to Software recommendations - I'll do that. But I think that Stackoverflow is more relevant site for asking that because 1) question is related to software library/component, not whole software 2) question is for software developers and data scientists, not for users 3) stackoverflow already has suitable tags for this question

Paul Serikov
  • 2,550
  • 2
  • 21
  • 36

1 Answers1

1

I found good similar library, it's ydata-profiling (ex. pandas-profiling). Extra bonus - it has a good itegration with Jupyter Notebook (e.g. with .to_notebook_iframe() method)

Paul Serikov
  • 2,550
  • 2
  • 21
  • 36