great-tables
great-tables copied to clipboard
Alpha value gets hidden by `data_color()`
The following call to data_color() sets alpha = 0.2, but the outcome is identical to setting alpha = 1.
from great_tables import GT, exibble
exibble_sm = exibble[["num", "fctr", "row", "group", "currency"]]
GT(exibble_sm).data_color(columns="row", alpha=0.2)
GT(exibble_sm).data_color(columns="row", alpha=1)