-
Notifications
You must be signed in to change notification settings - Fork 928
New issue
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
[FEA] support read/write csv with fixed-point decimal data #7110
Comments
This issue has been labeled |
This feature is still desired. |
This issue has been labeled |
Addresses #7110 column_to_strings_fn was specialized for fixed point type to enable support for csv writer. A test was added to validate output file created by csv writer for decimal type column. Authors: - Kumar Aatish (https://github.com/kaatish) Approvers: - Nghia Truong (https://github.com/ttnghia) - David Wendt (https://github.com/davidwendt) - Vukasin Milovanovic (https://github.com/vuule) - Devavret Makkar (https://github.com/devavret) URL: #8296
This PR adds support for decimal types in libcudf. Specifically, the PR: 1. expands the C++ API to allow passing `std::vector<data_type>` (partially addresses #8240) 2. it moves the logic for parsing decimal types to common ground, such that it can be used for both string_to_decimal conversion and for the CSV reader. 3. adds support to the CSV reader to also accept decimal as a target type (partially addresses #7110) Authors: - Elias Stehle (https://github.com/elstehle) Approvers: - Devavret Makkar (https://github.com/devavret) - Vukasin Milovanovic (https://github.com/vuule) - David Wendt (https://github.com/davidwendt) URL: #8511
We should support reading/writing decimal columns from/to CSV as fixed_point columns
TODO:
The text was updated successfully, but these errors were encountered: