Skip to content

Commit 9665e39

Browse files
docs: Fix rendering of examples for multiple apis (#620)
1 parent 9c106bd commit 9665e39

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

third_party/bigframes_vendored/pandas/core/frame.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4523,6 +4523,7 @@ def quantile(
45234523
Return values at the given quantile over requested axis.
45244524
45254525
**Examples:**
4526+
45264527
>>> import bigframes.pandas as bpd
45274528
>>> bpd.options.display.progress_bar = None
45284529
>>> df = bpd.DataFrame(np.array([[1, 1], [2, 10], [3, 100], [4, 100]]),

third_party/bigframes_vendored/pandas/core/generic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def __iter__(self) -> Iterator:
6161
iterator
6262
6363
**Examples:**
64+
6465
>>> import bigframes.pandas as bpd
6566
>>> bpd.options.display.progress_bar = None
6667

third_party/bigframes_vendored/pandas/core/groupby/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def quantile(self, q=0.5, *, numeric_only: bool = False):
9090
Return group values at the given quantile, a la numpy.percentile.
9191
9292
**Examples:**
93+
9394
>>> import bigframes.pandas as bpd
9495
>>> bpd.options.display.progress_bar = None
9596
>>> df = bpd.DataFrame([

third_party/bigframes_vendored/pandas/core/series.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,7 @@ def autocorr(self, lag: int = 1) -> float:
862862
the Series and its shifted self.
863863
864864
**Examples:**
865+
865866
>>> import bigframes.pandas as bpd
866867
>>> bpd.options.display.progress_bar = None
867868
@@ -2812,6 +2813,7 @@ def combine_first(self, other) -> Series:
28122813
of the two indexes.
28132814
28142815
**Examples:**
2816+
28152817
>>> import bigframes.pandas as bpd
28162818
>>> import numpy as np
28172819
>>> bpd.options.display.progress_bar = None
@@ -2852,6 +2854,7 @@ def update(self, other) -> None:
28522854
on index.
28532855
28542856
**Examples:**
2857+
28552858
>>> import bigframes.pandas as bpd
28562859
>>> import pandas as pd
28572860
>>> import numpy as np
@@ -3168,6 +3171,7 @@ def quantile(
31683171
Return value at the given quantile.
31693172
31703173
**Examples:**
3174+
31713175
>>> import bigframes.pandas as bpd
31723176
>>> bpd.options.display.progress_bar = None
31733177
>>> s = bpd.Series([1, 2, 3, 4])

0 commit comments

Comments
 (0)