Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Merge recent docs changes back to master #4966

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

Merged
merged 25 commits into from
Jan 15, 2025
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b6f279b
update autotick
LiamConnors Oct 21, 2024
e9308a4
Merge pull request #4812 from plotly/remove-autotick
LiamConnors Oct 22, 2024
011b6a0
remove old content + add redirect
LiamConnors Oct 25, 2024
2f94cb2
Merge pull request #4835 from plotly/remove-page
LiamConnors Oct 28, 2024
2164784
update titles
LiamConnors Nov 6, 2024
ce8f577
update title to dict
LiamConnors Nov 6, 2024
034a47b
remove z-axis
LiamConnors Nov 6, 2024
0768685
update titles as strings
LiamConnors Nov 6, 2024
e15d722
fix pandas example
LiamConnors Nov 6, 2024
193a4b7
Merge pull request #4850 from plotly/update-docs-examples
LiamConnors Nov 11, 2024
05e8485
adding a JavaScript/Jinja example to dropdowns.md
rl-utility-man Nov 18, 2024
7b0e444
minor cleanup of proposed new example in Update dropdowns.md
rl-utility-man Nov 18, 2024
28b6062
standardized axes; clarified the initally_hide_divs_other_than_the_first
rl-utility-man Nov 22, 2024
9af87c9
replacing HTML markup with escaped characters
rl-utility-man Dec 3, 2024
9ab1c69
fixing <!--#region-->
rl-utility-man Dec 5, 2024
9b057ee
drop down -> dropdown
rl-utility-man Dec 5, 2024
fd655c2
fix cap
rl-utility-man Dec 5, 2024
21c1098
Update doc/python/dropdowns.md
rl-utility-man Dec 5, 2024
1594a39
minor wording change:
rl-utility-man Dec 5, 2024
80f352d
bump cache
LiamConnors Dec 9, 2024
6f22731
Merge pull request #4938 from plotly/fix-failing-tests
LiamConnors Dec 10, 2024
bd50dd6
Merge branch 'doc-prod' into patch-8
LiamConnors Dec 10, 2024
8e9c21a
Update doc/python/dropdowns.md
rl-utility-man Dec 12, 2024
861b421
Merge pull request #4886 from rl-utility-man/patch-8
LiamConnors Dec 16, 2024
529c89d
Merge branch 'master' into merge-recent-docs-changes
LiamConnors Jan 14, 2025
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 pandas example
  • Loading branch information
LiamConnors committed Nov 6, 2024
commit e15d722b5f5bf0e18ae2c49e75d3465214b73a60
2 changes: 1 addition & 1 deletion doc/python/pandas-backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import pandas as pd
pd.options.plotting.backend = "plotly"

df = pd.DataFrame(dict(a=[1,3,2], b=[3,2,1]))
fig = df.plot(title=dict(text="Pandas Backend Example"), template="simple_white",
fig = df.plot(title="Pandas Backend Example", template="simple_white",
labels=dict(index="time", value="money", variable="option"))
fig.update_yaxes(tickprefix="$")
fig.show()
Expand Down