great-tables icon indicating copy to clipboard operation
great-tables copied to clipboard

Make awesome display tables using Python.

Results 188 great-tables issues
Sort by recently updated
recently updated
newest added

It seems that we need to use `f.read()` to avoid the `TypeError: a bytes-like object is required, not '_io.BufferedReader'`.

This PR simply cleans out some unneeded top-level files. Some of these are redundant since more up-to-date versions are present in the `.github` directory. Others of these are redundant because...

This PR tries to enhance our test coverage.

# Summary This is a work-in-progress PR for allowing more granular styling of the various components via the API currently used for cell styling (e.g. `loc.body()`). The motivation is that...

https://github.com/posit-dev/great-tables/pull/345 supported having more than a single spanner. As a part of that, we added some quick logic for labels that are md() and html() result objects. Let's be sure...

Related to #340. This PR aims to extend column selection to support `Polars` expressions.

In version 0.5.2 using polars expressions as the `rows` argument of `fmt_*` methods seems to work fine. However, Pylance reports an argument type error because the typing is `int |...

Type: ☹︎ Bug

## 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). ##...

Type: ★ Enhancement

Currently , the following code will raise `AttributeError: 'list' object has no attribute 'default'`. ```python from great_tables import GT, exibble ( GT(exibble[["fctr"]]) .fmt([lambda x: x], columns="fctr") ) ``` The main...

fmt_nanoplot can accept `plot_type="bar"`, but if you accidentally pass "bars" then 1. it does not error 2. it does not produce any plots It seems like this should raise an...

Type: ☹︎ Bug