-
Notifications
You must be signed in to change notification settings - Fork 76
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
resultset are indistinguishable from pandas data frames #468
Comments
another thing we can do is add a little message at the bottom of the table saying: "to convert to pandas, call |
Sorry for working on the problem before describing the AC Acceptance Criteria:
About the 3rd criterion, do I show the same error message when non pandas-like operations (either by typo such as hea() or by intention) are performed? |
for 2) we can also mention they can call
No, no need to cover typos. |
ResultSet (the data structure we use by default to store db results), is currently indistinguishable from pandas data frames:
this can confuse users, as they might think the're data frames. we should ensure they look different. perhaps add result set at the bottom.
maybe we should also detect when they try do perform pandas-like operations? e.g.,
Error should be:
head is not a valid operation, you can convert this into a pandas data frame by calling .DataFrame() or a polars data frame by calling .PolarsDataFrame()
The text was updated successfully, but these errors were encountered: