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
If have a nominal column then this operation will convert to quantitative
df["column"] * 100 # changes column to be quantitative
However if I reassign, then the default type inference is run again and Lux overrides our update
df["column"] = df["column"] * 100 # metadata recomputed and therefore changed back to nominal
The text was updated successfully, but these errors were encountered:
I thought this was fixed by an earlier patch? @Acornagain
Sorry, something went wrong.
No branches or pull requests
If have a nominal column then this operation will convert to quantitative
However if I reassign, then the default type inference is run again and Lux overrides our update
The text was updated successfully, but these errors were encountered: