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
detect_initial_config
The detect_initial_config is currently assigning types of int and float.
int
float
In RDT 1.0.0, these types are deprecated. The detected sdtype should be numerical for both types of columns.
numerical
from rdt import HyperTransformer from rdt import get_demo data = get_demo() ht = HyperTransformer() ht.detect_initial_config(data)
Output: note how age is detected as "integer" and dollars_spent is detected as "float"
age
"integer"
dollars_spent
"float"
Config: { "sdtypes": { "last_login": "categorical", "email_optin": "boolean", "credit_card": "categorical", "age": "integer", "dollars_spent": "float" }, "transformers": ... }
The text was updated successfully, but these errors were encountered:
pvk-developer
No branches or pull requests
Environment Details
Error Description
The
detect_initial_config
is currently assigning types ofint
andfloat
.In RDT 1.0.0, these types are deprecated. The detected sdtype should be
numerical
for both types of columns.Steps to reproduce
Output: note how
age
is detected as"integer"
anddollars_spent
is detected as"float"
The text was updated successfully, but these errors were encountered: