Pandas formatting API is pretty solid, so I'm removing the formatting options from the core PrettyPandas object and focusing that on summaries and subtotals. The old formatting functions will be kept around but internally using Pandas' style.format method.
All the formatting functions have been adjusted to allow use with pandas.style API on their own. This update also fixes a few bugs in how precision was calculated.
Pandas formatting API is pretty solid, so I'm removing the formatting options from the core
PrettyPandas
object and focusing that on summaries and subtotals. The old formatting functions will be kept around but internally using Pandas'style.format
method.All the formatting functions have been adjusted to allow use with
pandas.style
API on their own. This update also fixes a few bugs in how precision was calculated.