8000 wip REF: redirect `df.to_html` to Styler if new kwargs are used. by attack68 · Pull Request #45090 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

wip REF: redirect df.to_html to Styler if new kwargs are used. #45090

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5b61597
render links
attack68 Dec 24, 2021
fe8dd37
tests
attack68 Dec 24, 2021
11f20eb
whats new
attack68 Dec 24, 2021
a7b3c59
multipl links test
attack68 Dec 24, 2021
bf9b9c2
add LaTeX. chg to `hyperlinks` instead of `render_links`
attack68 Dec 25, 2021
ea9c6a6
whats new update
attack68 Dec 25, 2021
d331a82
extend docs
attack68 Dec 25, 2021
1abc6d9
html deprecation implementation.
attack68 Dec 25, 2021
143f629
add tests, remove conflicting args input
attack68 Dec 27, 2021
b47ac53
Merge remote-tracking branch 'upstream/master' into styler_df_to_html2
attack68 Dec 28, 2021
e8bd87b
rewrite the docs adding deprecations.
attack68 Dec 29, 2021
1fff52a
rewrite the docs adding deprecations.
attack68 Dec 29, 2021
e8f576b
rewrite the docs adding deprecations.
attack68 Dec 29, 2021
1c4528e
rewrite the docs adding deprecations.
attack68 Dec 29, 2021
a43e0a5
rewrite the docs adding deprecations.
attack68 Dec 30, 2021
7057c50
doc warnings
attack68 Jan 2, 2022
182157c
whats new
attack68 Jan 2, 2022
e81dd8b
Merge remote-tracking branch 'upstream/master' into styler_df_to_html2
attack68 Jan 8000 2, 2022
5bf5727
whats new
attack68 Jan 2, 2022
5e2f2a3
fix doc string errors
attack68 Jan 2, 2022
fe2b222
mypy fix
attack68 Jan 2, 2022
c6b74c5
skip no jinja2
attack68 Jan 2, 2022
cf7e5e0
tests for conditional warning based on arg input
attack68 Jan 2, 2022
0972a2c
Merge remote-tracking branch 'upstream/master' into styler_df_to_html2
attack68 Jan 2, 2022
e57c26a
use conventional sphinx links
attack68 Jan 3, 2022
68918aa
fix docstring error
attack68 Jan 3, 2022
4cfc9bf
Merge remote-tracking branch 'upstream/master' into styler_df_to_html2
attack68 Jan 4, 2022
60b81c4
Merge remote-tracking branch 'upstream/master' into styler_df_to_html2
attack68 Jan 5, 2022
a37747f
push to 1.5.0
attack68 Jan 5, 2022
568a92c
push to 1.5.0
attack68 Jan 5, 2022
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
fix doc string errors
  • Loading branch information
attack68 committed Jan 2, 2022
commit 5e2f2a377befbede47ceadea814cba41beee8ccb
6 changes: 3 additions & 3 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2891,7 +2891,7 @@ def to_html(
Parameters
----------
buf : str, Path or StringIO-like, optional, default None
Buffer to write to. If None, the output is returned as a string
Buffer to write to. If None, the output is returned as a string.
columns : sequence, optional, default None
The subset of columns to write. Writes all by default.
col_space : str or int, list or dict of int or str, optional
Expand Down Expand Up @@ -2960,7 +2960,7 @@ def to_html(

.. deprecated:: 1.4.0
show_dimensions : bool, default False
Display the DataFrame dimensions (number or rows by columns)
Display the DataFrame dimensions (number or rows by columns).

.. deprecated:: 1.4.0
See notes for the recommendation to add a ``caption``.
Expand Down Expand Up @@ -3002,7 +3002,7 @@ def to_html(
table_attributes : str, optional
Attributes to assign within the `<table>` HTML element in the format:

``<table .. <table_attributes> >``
``<table .. <table_attributes> >``.

.. versionadded:: 1.4.0
sparse_index : bool, optional
Expand Down
0