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
Hi, using .min and .max for vector is too slow for large dataset (3.5m records) than using the .to_a.min and .to_a.max.
.min
.max
.to_a.min
.to_a.max
vector.describe: 99.064083 0.171811 99.235894 ( 99.350809) vector.to_a.min: 0.056799 0.000000 0.056799 ( 0.056925) vector.min: 39.123274 0.087998 39.211272 ( 39.260956)
Same goes for percentile and median.
percentile
median
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, using
.min
and.max
for vector is too slow for large dataset (3.5m records) than using the.to_a.min
and.to_a.max
.Same goes for
percentile
andmedian
.The text was updated successfully, but these errors were encountered: