From 6da6160d8c8dd8c9f053fcd2689d2c43b9ec2f2f Mon Sep 17 00:00:00 2001 From: tusharrworkk-lab Date: Fri, 17 Jul 2026 22:39:19 +0530 Subject: [PATCH] Update README with usage guidance and examples links Clarify how to use percentify in practice and point readers to the full worked examples in the documentation. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index ba0d40c..895bdce 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,17 @@ pip install percentify Requires Python 3.10+, `numpy`, and `pandas` 2.0+. +## How to use percentify + +Import the function that matches the question you want to answer, pass in a pandas or Polars object, and use the returned DataFrame or scalar directly in your notebook, report, or pipeline. + +```python +from percentify import missing, profiler + +missing(df) # quick column-level check +profiler(df, target="churn") # ranked data-quality issues and fixes +``` + ## Quick example ```python @@ -69,6 +80,11 @@ missing(df) One import, one line. A clean, sorted DataFrame you can read or feed into the next step. +## Examples + +- [Worked examples for every function](https://data-centt.github.io/percentify/documentation/) +- [Project documentation](https://data-centt.github.io/percentify/) + ## What's inside | Function | What it answers |