-
Notifications
You must be signed in to change notification settings - Fork 952
Add JSON Writer #12474
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
Add JSON Writer #12474
Conversation
Codecov ReportBase: 86.58% // Head: 85.72% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #12474 +/- ##
================================================
- Coverage 86.58% 85.72% -0.87%
================================================
Files 155 155
Lines 24368 24931 +563
================================================
+ Hits 21098 21371 +273
- Misses 3270 3560 +290
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
API review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last bit remaining..
Co-authored-by: GALI PREM SAGAR <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cmake approval
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CMake changes LGTM
/merge |
Description
Adds JSON writer with nested support.
It supports numeric, datetime, duration, strings, nested types such as struct and list types.
orient='records'
is only supported now, withlines=True/False
.Usage:
df.to_json(engine='cudf')
closes #11165
Checklist