datagouv / csv-detective

CSV inspection
44 stars 10 forks source link

Add pandas profiling infos in csv detective report #46

Closed geoffreyaldebert closed 1 year ago

geoffreyaldebert commented 1 year ago

Add in report for each columns :

geoffreyaldebert commented 1 year ago

add a parameter for activate this feature

geoffreyaldebert commented 1 year ago
 "profile": {
  "column_name" : {
    "min": 1, # only int and float
    "max: 12, # only int and float
    "mean": 5, # only int and float
    "std": 5, # only int and float
    "tops": [  # limited to 10
      "xxx",
      "yyy",
      "..."
    ],
    "nb_distinct": 67,
    "nb_missing_values": 102
  }
}