We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug clean_au_abn returns an empty frame, whereas validate_au_abn works fine
To Reproduce Steps to reproduce the behavior:
import pandas as pd import numpy as np from dataprep.clean import * df = pd.DataFrame( { "abn": [ "83 914 571 673", "99 999 999 999", "51824753556", "51 824 753 556", "hello", np.nan, "NULL" ], "address": [ "123 Pine Ave.", "main st", "1234 west main heights 57033", "apt 1 789 s maple rd manhattan", "robie house, 789 north main street", "(staples center) 1111 S Figueroa St, Los Angeles", "hello", ] } ) df_out=clean_au_abn(df, "abn") df_out
Expected behavior one dataframe with input records
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
qidanrui
No branches or pull requests
Describe the bug
clean_au_abn returns an empty frame, whereas validate_au_abn works fine
To Reproduce
Steps to reproduce the behavior:
Expected behavior
one dataframe with input records
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: