great-tables
great-tables copied to clipboard
Make awesome display tables using Python.
# Summary This PR fixes a bug whereby values from unselected rows affect the scaling in nanoplots. In addition to the single values case given in #283, a simple example...
## Prework - [X] Read and agree to the [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/) and [contributing guidelines](https://github.com/posit-dev/great_tables/blob/main/.github/CONTRIBUTING.md). - [X] If there is [already a relevant issue](https://github.com/posit-dev/great_tables/issues), whether open or closed, comment on...
## Description Saving image of a table to png file fails when the table has negative values, and .fmt_number is used. ## Reproducible example - Verified on complex use cases,...
(From pairing with @schloerke) Currently, when applying pieces like formatting (e.g. with `GT.fmt_number()`), the formatting is not applied right away, but just before rendering. Delaying applying things like formatting is...
For `cols_label()` we have these notes:  We should add a similar explanation to tab spanner
## Question What would you like to know? Hi, not sure if I've missed something but is there an easy way to apply conditional styles (https://posit-dev.github.io/great-tables/get-started/basic-styling.html) to pivoted tables (ie....
Is it possible to add styling in the stub? I can style a regular column like this: ``` from great_tables import GT, md, html, style, loc from great_tables.data import islands...
## Prework - [x] Read and abide by the **great_tables** [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/) and [contributing guidelines](https://github.com/posit-dev/great_tables/blob/main/.github/CONTRIBUTING.md). - [x] Search for duplicates among the [existing issues](https://github.com/posit-dev/great_tables/issues) (both open and closed). ##...
Currently, Great Tables models a wide range of options via the Options dataclass. This class looks like this... ```python @dataclass(frozen=True) class OptionsInfo: scss: bool category: str type: str value: Any...
`great-tables` should support the same versions of supported python versions as in https://devguide.python.org/versions/#supported-versions Today, this is python 3.8+ (not python 3.9+).