Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
be15967
add sparsify to to_html
attack68 Jun 11, 2021
c187dc2
add tests
attack68 Jun 11, 2021
c53040e
doc fix
attack68 Jun 11, 2021
44cca16
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jun 12, 2021
6427b88
Merge branch 'rls1.3.0' into styler_to_html_sparse_args
attack68 Jun 15, 2021
6bf29f8
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jun 18, 2021
2b166b4
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jun 20, 2021
ad4cee6
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jun 29, 2021
3889890
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 3, 2021
60053ab
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 5, 2021
512af50
whats new 1.4.0
attack68 Jul 5, 2021
13090ab
better test
attack68 Jul 5, 2021
38559f5
versionadded
attack68 Jul 5, 2021
5ba2db9
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 8, 2021
2ca6207
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 10, 2021
855e886
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 13, 2021
e796368
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 14, 2021
1770300
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 20, 2021
ad1f85d
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 24, 2021
71c9dae
Merge branch 'master' into styler_to_html_sparse_args
jreback Jul 28, 2021
cadcc3e
Merge remote-tracking branch 'upstream/master' into styler_to_html_sp…
attack68 Jul 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc fix
  • Loading branch information
attack68 committed Jun 11, 2021
commit c53040ed2db24208f516889c9125accffdb234fa
8 changes: 4 additions & 4 deletions pandas/io/formats/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,8 @@ def to_latex(
Defaults to ``pandas.options.styler.sparse.index`` value.
sparse_columns : bool, optional
Whether to sparsify the display of a hierarchical index. Setting to False
will display each explicit level element in a hierarchical key for each row.
Defaults to ``pandas.options.styler.sparse.columns`` value.
will display each explicit level element in a hierarchical key for each
column. Defaults to ``pandas.options.styler.sparse.columns`` value.
multirow_align : {"c", "t", "b"}
If sparsifying hierarchical MultiIndexes whether to align text centrally,
at the top or bottom.
Expand Down Expand Up @@ -783,8 +783,8 @@ def to_html(
Defaults to ``pandas.options.styler.sparse.index`` value.
sparse_columns : bool, optional
Whether to sparsify the display of a hierarchical index. Setting to False
will display each explicit level element in a hierarchical key for each row.
Defaults to ``pandas.options.styler.sparse.columns`` value.
will display each explicit level element in a hierarchical key for each
column. Defaults to ``pandas.options.styler.sparse.columns`` value.
encoding : str, optional
Character encoding setting for file output, and HTML meta tags,
defaults to "utf-8" if None.
Expand Down