JHM Darbyshire

Results 83 comments of JHM Darbyshire
trafficstars

@ivanovmg @rhshadrach @mroeschke this is greenish now. I believe the http doc build is unrelated. Please re look and consider if all your comments are addressed

Yes and remove the redundant LatexFormatter code

Option 1. Its annoying and I think it should be removed for the final 2.2.x release but for now its only been out for 1 month so keep it.

i dont think this feature is about Styler. It is about adding functionality to the default DataFrame display that is demonstrated by Styler, i.e. which Styler already possesses.

i think its generally quite handy to have configurable options for precision, thousands and decimal separator. Styler avoided using the locale package, if I recall correctly, but it was a...

i think its generally quite handy to have configurable options for precision, thousands and decimal separator. Styler avoided using the locale package, if I recall correctly, but it was a...

Hi thanks for the suggestion, I will have a think on this. Im not convinced that this really reduces code duplication. You have taken a few one line functions and...

I didn't implement any of this, and haven't checked the implementation but my guess is going to be that; a) reading a grid based table is straight forward. b) accounting...

So is the summary here that all tools you have tested for parsing this table, including pandas, return the same results, **and** that those results are all incorrect.

This isn't true. The label is placed after the caption command in both table and long tables. ```python df = pd.DataFrame([[1,2],[3,4]]) print(df.to_latex(label="table:1", caption="Caption")) ### \begin{table} \caption{Caption} \label{table:1} \begin{tabular}{lrr} \toprule &...