Enhanced file reader script to allow conversion to best datatypes pos… - #72
Open
kaushik-sb wants to merge 2 commits into
Open
Enhanced file reader script to allow conversion to best datatypes pos…#72kaushik-sb wants to merge 2 commits into
kaushik-sb wants to merge 2 commits into
Conversation
…sible when there are nulls in file Signed-off-by: 23f3001827 <23f3001827@ds.study.iitm.ac.in>
kaushik-sb
marked this pull request as ready for review
July 20, 2026 07:40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[FEATURE] Enhance CSVFileReader to Support Robust dtype Conversion with Null Values
Description
This PR enhances the CSV file reading functionality to handle datatype conversion more robustly, particularly in the presence of null values.
Previously, datasets containing null values could lead to inconsistent or suboptimal datatype inference. For example, integer columns with missing values were often coerced to floating-point types (resulting in values like
1.0instead of1), and string columns could be interpreted as genericobjecttypes with inconsistent null representations (NaN,None, or empty strings).With this update, when
convert_dtypesis enabled in the source configuration, the dataframe leverages pandas' built-inconvert_dtypes()method for safer and more accurate type inference.Changes Made
Added conditional dtype conversion in
CSVFileReader:If
convert_dtypesis set totruein the source configuration (YAML), the dataframe now executes (set tofalseby default if not specified) :Improvements Introduced
1. Nullable Integer Handling
float64Int64).0formatting issues (e.g.,1.0 → 1)2. Improved String Handling
objectdtype columns into pandas' dedicatedstringdtype3. Standardized Null Representation
NaN,None, etc.) with pandas' unified<NA>representation4. Boolean Type Support
boolean) instead of fallback toobjectTrue,False, and<NA>5. Overall Data Consistency
Definition of Done
Before submitting this pull request, please ensure that the following criteria have been met:
Test Evidence
1. CSV file processed without convert_dtypes flag in file source (Has .0 issue in numerical columns that have null entries)
test_without_convert.csv
2. CSV file processed with convert_dtypes flag in file source (Has correct data formatting even though columns have null entries)
test_with_convert.csv
3. Test yml file used for generating above csv test output files
test_convert_dtypes.yml
Additional Notes
[Add any additional notes or context for the reviewer or future maintainers of this code.]
Thank you for submitting!