Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maximiliancw/completely

Measure your data completeness
https://github.com/maximiliancw/completely

data data-cleaning data-quality data-science missing-data

Last synced: about 1 month ago
JSON representation

Measure your data completeness

Awesome Lists containing this project

README

        

# completely
*High-quality* data is extremely important nowadays. But before you start cleaning/processing it,
you might want to check how **complete** the dataset really is:

```python
from completely import measure

data = [{'name': 'Bob', 'age': 42}, {'name': 'Alice', 'age': None}, {'name': '', 'age': 100}]
print(measure(data))

# Output: 0.667
```

**completely** currently works with:
- strings / ints / floats
- lists
- sets
- dicts
- Nested objects of one of the above

## Setup
```bash
pip install completely
```

## Contributing
We're happy about every meaningful contribution to this project via pull requests. If needed, we'll setup more precise guidelines on how to contribute at some point.