Miles Granger
Miles Granger
Right now, a full kmeans implementation sits here... Basically a freebie to pull this out into it's own crate and use that. - [ ] External Kmeans crate - [...
Will fix [ARROW-13763](https://issues.apache.org/jira/browse/ARROW-13763) A separate Jira issue will be made to address closing files in V2 ParquetDataset, which needs to be handled in the C++ layer. Adds context manager to...
Hello there, and thanks for this lib! :100: I've been trying for a while now to use the `CheckoutSession` client-server checkout flow. I've got a `/create-session` route, creates the `stripe::CheckoutSession`...
Hello, First thank you for the work done with this library! I'm still quite green with Rust in general, so perhaps I'm missing something obvious, but it would be nice...
## Summary In #71 it was demonstrated that a schema with a dot `.` in the name would cause a parsing error. This patch allows supporting this naming style. ###...
Hello there! Thanks for a great lib, seems to work well. One issue I've found, is if a schema has a dot in the schema (albeit annoyingly, but no control...
Recently started using [helix](https://github.com/helix-editor/helix) and I work quite a bit with cython. For syntax highlighting with helix, it [needs a tree-sitter for the given language](https://github.com/helix-editor/helix/blob/18909aafe21ed32f11dcdf646423b43b1a951010/languages.toml#L440). I understand this is for...
Part of [ARROW-14596](https://issues.apache.org/jira/browse/ARROW-14596), and [ARROW-13798](https://issues.apache.org/jira/browse/ARROW-13798) Does not propose to solve selecting from lists in this PR; only supporting dotted paths into arbitrarily nested structs using existing `FromDotPath`. Selecting from lists...
Will fix [ARROW-17960](https://issues.apache.org/jira/browse/ARROW-17960)
Will close [ARROW-17989](https://issues.apache.org/jira/browse/ARROW-17989) Allows using names in `pc.struct_field` ```python In [1]: arr = pa.array([{'a': {'b': 1}, 'c': 2}]) In [2]: pc.struct_field(arr, 'c') Out[2]: [ 2 ] In [3]: pc.struct_field(arr, '.a.b')...