Extension for `pandas` to use `rapidfuzz` for fuzzy matching.
Project description
pandas-fuzz
Extension for pandas
to use rapidfuzz
for fuzzy matching.
Installation
pip install pandas_fuzz
Usage
To register the extension make sure to import pandas_fuzz
before using it.
import pandas as pd
import pandas_fuzz
Alternatively, you can import pandas
from pandas_fuzz
directly.
from pandas_fuzz import pandas as pd
rapidfuzz.fuzz
pandas_fuzz
integrates the following functions from rapidfuzz.fuzz
into pandas
. These functions are available in the fuzz
namespace for both pandas.Series
and pandas.DataFrame
.
rapidfuzz.fuzz.ratio
rapidfuzz.fuzz.partial_ratio
rapidfuzz.fuzz.token_sort_ratio
rapidfuzz.fuzz.token_set_ratio
rapidfuzz.fuzz.WRatio
rapidfuzz.fuzz.QRatio
pandas.Series
apply fuzz.ratio
element wise to pd.Series
.
>>> pd.Series(["this is a test", "this is a test!"]).fuzz.ratio("this is a test!")
0 96.551724
1 100.000000
dtype: float64
pandas.DataFrame
apply fuzz.ratio
row wise to columns s1
and s2
>>> pd.DataFrame({
"s1": ["this is a test", "this is a test!"],
"s2": ["this is a test", "this is a test!"]
}).fuzz.ratio("s1", "s2")
0 100.0
1 100.0
dtype: float64
Dependencies
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pandas_fuzz-0.0.0.tar.gz
(3.3 kB
view hashes)
Built Distribution
Close
Hashes for pandas_fuzz-0.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99694fade48b9ec5b3b5b8a09ed831d104c47b22593dedb317b9017de9822e8a |
|
MD5 | ff374e9134867b44baee4c8e4658f1b2 |
|
BLAKE2b-256 | 017c1ba3c099013511c75b7a5d87d17c71d1ec5b6adaa41f2827234942cba6d7 |