0 purchases
completely 0.1.0
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:
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:
Lists of strings / ints / floats
Lists of dicts
Nested lists of one of the above
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.