Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/)

@Daniel15568 Daniel15568 Jul 17, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would need extra use examples outside the docs. I'll merge this and rewrite issue.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alright. I will put in more examples then

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done. if you feel like anything more could be added. I will be happy to make one more pr for the same

- [Project documentation](https://data-centt.github.io/percentify/)

## What's inside

| Function | What it answers |
Expand Down
Loading