8000 docs: Fix rendering of examples for multiple apis by TrevorBergeron · Pull Request #620 · googleapis/python-bigquery-dataframes · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions third_party/bigframes_vendored/pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4523,6 +4523,7 @@ def quantile(
Return values at the given quantile over requested axis.

**Examples:**

>>> import bigframes.pandas as bpd
>>> bpd.options.display.progress_bar = None
>>> df = bpd.DataFrame(np.array([[1, 1], [2, 10], [3, 100], [4, 100]]),
Expand Down
1 change: 1 addition & 0 deletions third_party/bigframes_vendored/pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def __iter__(self) -> Iterator:
iterator

**Examples:**

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def quantile(self, q=0.5, *, numeric_only: bool = False):
Return group values at the given quantile, a la numpy.percentile.

**Examples:**

>>> import bigframes.pandas as bpd
>>> bpd.options.display.progress_bar = None
>>> df = bpd.DataFrame([
Expand Down
4 changes: 4 additions & 0 deletions third_party/bigframes_vendored/pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,7 @@ def autocorr(self, lag: int = 1) -> float:
the Series and its shifted self.

**Examples:**

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

Expand Down Expand Up @@ -2812,6 +2813,7 @@ def combine_first(self, other) -> Series:
of the two indexes.

**Examples:**

>>> import bigframes.pandas as bpd
>>> import numpy as np
>>> bpd.options.display.progress_bar = None
Expand Down Expand Up @@ -2852,6 +2854,7 @@ def update(self, other) -> None:
on index.

**Examples:**

>>> import bigframes.pandas as bpd
>>> import pandas as pd
>>> import numpy as np
Expand Down Expand Up @@ -3168,6 +3171,7 @@ def quantile(
Return value at the given quantile.

**Examples:**

>>> import bigframes.pandas as bpd
>>> bpd.options.display.progress_bar = None
>>> s = bpd.Series([1, 2, 3, 4])
Expand Down
0