We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
df.std()
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
df.std() does not infer types of generated columns.
An example can be found in this notebook: https://gist.github.com/Jolanrensen/c078d45c78ff7057598b40cb9c40b368
The standard deviation of Int columns results in a Double, but DataFrame assumes the type of columns stays the same after the operation.
Int
Double
Patching this fixes 7/15 tests in #713
The text was updated successfully, but these errors were encountered:
type: KType
DataColumnImpl
Jolanrensen
Successfully merging a pull request may close this issue.
df.std()
does not infer types of generated columns.An example can be found in this notebook:
https://gist.github.com/Jolanrensen/c078d45c78ff7057598b40cb9c40b368
The standard deviation of
Int
columns results in aDouble
, but DataFrame assumes the type of columns stays the same after the operation.Patching this fixes 7/15 tests in #713
The text was updated successfully, but these errors were encountered: