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 Calling the class DatePerturbation
DatePerturbation
To Reproduce
>>> def load_dataset(sess=None): dataset = pd.DataFrame({ "name": ["alice", "bob"], "age": [34, 55], "birthdate": [pd.Timestamp(1985, 2, 23), pd.Timestamp(1963, 5, 10)], "salary": [59234.32, 49324.53], "ssn": ["343554334", "656564664"], }) >>> df = load_dataset() >>> perturb_date = DatePerturbation(frequency=("YEAR", "MONTH", "DAY"), min=(-10, -5, -5), max=(10, 5, 5)) >>> perturb_numric(df["age"])
Expected behavior When calling the perturb_numric without assignment changes the original pd.Series
perturb_numric
Screenshots
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Calling the class
DatePerturbation
To Reproduce
Expected behavior
When calling the
perturb_numric
without assignment changes the original pd.SeriesScreenshots
The text was updated successfully, but these errors were encountered: