-
Notifications
You must be signed in to change notification settings - Fork 130
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 row limit setting of data viewer and support Apache Arrow Table #945
Conversation
… it in the data viewer
6a1b011
to
472b4c6
Compare
When I tried the data viewer with a huge data frame, I got the impression that limiting it to 100,000 records only waited a few seconds, but with 1 million records it wasn't clear if it was working. |
Thank you for your review. I edited them. It seems to have failed to check, but it may be a problem in GitHub Actions. |
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.
LGTM Thanks!
What problem did you solve?
close #944
Currently, when displaying a data frame in the data viewer, temporary files are written out and read in, which does not work well for huge data frames with more than a few million rows. (related to #619, #837)
I would like to add an option to limit the number of records loaded into the data viewer, as it is often enough to see some of the content without loading all the records into the data viewer.
I would also like to add support for the Apache Arrow Table, which is becoming a strong choice for data frame compatibility when dealing with large numbers of records.
By controlling the number of records to be displayed, a huge Arrow Table can be displayed in the data viewer without stress.
ArrowTabular
).(If you have)Screenshot