Skip to content
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

Repr broken for boolean columns #425

Closed
jaychia opened this issue Jan 6, 2023 · 0 comments
Closed

Repr broken for boolean columns #425

jaychia opened this issue Jan 6, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@jaychia
Copy link
Contributor

jaychia commented Jan 6, 2023

Describe the bug

When repring dataframes with bool columns, we get an error thrown by our dependency tabulate.

This minimal repro for this is:

import tabulate

tabulate({"a": ["True", "False", "False"]},  maxcolwidths=20)

We can work around this temporarily by corner-casing the string repr of our booleans to lowercases instead, but this requires an upstream fix in tabulate.

@jaychia jaychia added the bug Something isn't working label Jan 6, 2023
jaychia added a commit that referenced this issue Jan 10, 2023
1. Adds fixes for #425 that causes errors in our 10 minute tutorial
2. Refreshes our 10 minute tutorial with new functionality and best
practices
@jaychia jaychia closed this as completed Jan 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant