Skip to content
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

docs: update bigframes.pandas.Series docs #1273

Merged
merged 24 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
17a36d8
docs: update bigframes.pandas.Series docs
arwas11 Jan 7, 2025
f183721
Merge remote-tracking branch 'origin/main' into b296390934-update-ser…
arwas11 Jan 8, 2025
2986a95
update the rest of the methods
arwas11 Jan 8, 2025
357b373
Merge remote-tracking branch 'origin/main' into b296390934-update-ser…
arwas11 Jan 9, 2025
f5a9c3b
fix formatting
arwas11 Jan 9, 2025
e7dd296
fix indentation error
arwas11 Jan 9, 2025
3b1c635
fix some docstrings and a doctest error
arwas11 Jan 10, 2025
114bd4e
Merge branch 'main' into b296390934-update-sereies-docs
arwas11 Jan 10, 2025
38b2358
fix formatting
arwas11 Jan 10, 2025
a4fa83c
Merge remote-tracking branch 'origin/b296390934-update-sereies-docs' …
arwas11 Jan 10, 2025
8677838
Merge branch 'main' into b296390934-update-sereies-docs
arwas11 Jan 10, 2025
8524bc7
fix indentation and blankline error
arwas11 Jan 10, 2025
432b1ae
Merge remote-tracking branch 'origin/b296390934-update-sereies-docs' …
arwas11 Jan 10, 2025
4be237c
fix indentation
arwas11 Jan 10, 2025
8c740ea
fix indentation
arwas11 Jan 10, 2025
940e5e2
fix kokoro doctest errors
arwas11 Jan 14, 2025
ffa7d94
Merge remote-tracking branch 'origin/main' into b296390934-update-ser…
arwas11 Jan 14, 2025
6155970
fix doctest
arwas11 Jan 16, 2025
4e78a4d
Merge remote-tracking branch 'origin/main' into b296390934-update-ser…
arwas11 Jan 16, 2025
320a682
fix kokoro doctest
arwas11 Jan 16, 2025
18e704c
fix kokoro doctest
arwas11 Jan 16, 2025
70d11ce
remove .to_string code example
arwas11 Jan 16, 2025
fa7e042
fix kokoro doctest
arwas11 Jan 16, 2025
230c9de
fix kokoro doctest
arwas11 Jan 16, 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
4 changes: 2 additions & 2 deletions third_party/bigframes_vendored/pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -6772,9 +6772,9 @@ def iat(self):

>>> import bigframes.pandas as bpd
>>> bpd.options.display.progress_bar = None

>>> df = bpd.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]],
... columns=['A', 'B', 'C'])
>>> bpd.options.display.progress_bar = None
>>> df
A B C
0 0 2 3
Expand Down Expand Up @@ -6806,9 +6806,9 @@ def at(self):

>>> import bigframes.pandas as bpd
>>> bpd.options.display.progress_bar = None

>>> df = bpd.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]],
... index=[4, 5, 6], columns=['A', 'B', 'C'])
>>> bpd.options.display.progress_bar = None
>>> df
A B C
4 0 2 3
Expand Down
Loading
Loading