Jerry Wu

Results 38 issues of Jerry Wu

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

This PR tries to enhance our test coverage.

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

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

Currently, our website features some excellent examples. However, I believe it would be beneficial to have a case study similar to the one we had in [{gt}](https://gt.rstudio.com/articles/case-study-gtcars). I've followed the...

Type: ★ Enhancement

It seems that the dispatch of `set_style` for `LocTitle` is still under development and hasn't been made public yet. However, the implementation seems a bit off because `return data._styles.append(info)` will...

I suspect there might be an extra closing curly brace here.

I suggest mentioning that `Polars` DataFrame is supported in the `get-started` section. This should be an attractive point for users.

Hello team, I would like to propose consolidating the ordered list-related code using a new function, `_create_ordered_list()`. Our current logic works well, such as `list({k: True for k in x})`...

Related to #353. After reviewing the `pipe()` methods from [Pandas](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.pipe.html) and [Polars](https://docs.pola.rs/py-polars/html/reference/dataframe/api/polars.DataFrame.pipe.html), I propose adding `GT.pipe()` and `GT.pipes()` in this PR. ### `GT.pipe()` `GT.pipe()` will function similarly to `Pandas` and...