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
mean
stddev
i want to run mean and stddev on decimal dtypes
import daft from daft import col, lit d_col = col("floats").cast(daft.DataType.decimal128(5, 2)) df = ( daft.from_pydict({"floats": [328.00, 300.00]}) .agg(d_col.stddev()) .collect() ) df
casting to floats, but this may lose some precision.
No response
No
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is your feature request related to a problem?
i want to run
mean
andstddev
on decimal dtypesDescribe the solution you'd like
Describe alternatives you've considered
casting to floats, but this may lose some precision.
Additional Context
No response
Would you like to implement a fix?
No
The text was updated successfully, but these errors were encountered: