@@ -4735,6 +4735,7 @@ def round(self, decimals):
47354735
47364736 **Examples:**
47374737
4738+ >>> import bigframes.pandas as bpd
47384739 >>> df = bpd.DataFrame([(.21, .32), (.01, .67), (.66, .03), (.21, .18)],
47394740 ... columns=['dogs', 'cats'])
47404741 >>> df
@@ -5051,7 +5052,7 @@ def prod(self, axis=0, *, numeric_only: bool = False):
50515052
50525053 **Examples:**
50535054
5054-
5055+ >>> import bigframes.pandas as bpd
50555056 >>> df = bpd.DataFrame({"A": [1, 2, 3], "B": [4.5, 5.5, 6.5]})
50565057 >>> df
50575058 A B
@@ -5261,7 +5262,7 @@ def median(self, *, numeric_only: bool = False, exact: bool = True):
52615262
52625263 **Examples:**
52635264
5264-
5265+ >>> import bigframes.pandas as bpd
52655266 >>> df = bpd.DataFrame({"A": [1, 3], "B": [2, 4]})
52665267 >>> df
52675268 A B
@@ -5297,6 +5298,7 @@ def quantile(
52975298
52985299 **Examples:**
52995300
5301+ >>> import bigframes.pandas as bpd
53005302 >>> df = bpd.DataFrame(np.array([[1, 1], [2, 10], [3, 100], [4, 100]]),
53015303 ... columns=['a', 'b'])
53025304 >>> df.quantile(.1)
@@ -5544,7 +5546,7 @@ def nlargest(self, n: int, columns, keep: str = "first"):
55445546
55455547 **Examples:**
55465548
5547-
5549+ >>> import bigframes.pandas as bpd
55485550 >>> df = bpd.DataFrame({"A": [1, 1, 3, 3, 5, 5],
55495551 ... "B": [5, 6, 3, 4, 1, 2],
55505552 ... "C": ['a', 'b', 'a', 'b', 'a', 'b']})
@@ -5634,7 +5636,7 @@ def nsmallest(self, n: int, columns, keep: str = "first"):
56345636
56355637 **Examples:**
56365638
5637-
5639+ >>> import bigframes.pandas as bpd
56385640 >>> df = bpd.DataFrame({"A": [1, 1, 3, 3, 5, 5],
56395641 ... "B": [5, 6, 3, 4, 1, 2],
56405642 ... "C": ['a', 'b', 'a', 'b', 'a', 'b']})
@@ -6116,7 +6118,7 @@ def describe(self, include: None | Literal["all"] = None):
61166118
61176119 **Examples:**
61186120
6119-
6121+ >>> import bigframes.pandas as bpd
61206122 >>> df = bpd.DataFrame({"A": [3, 1, 2], "B": [0, 2, 8], "C": ["cat", "cat", "dog"]})
61216123 >>> df
61226124 A B C
@@ -6254,7 +6256,7 @@ def pivot_table(self, values=None, index=None, columns=None, aggfunc="mean"):
62546256
62556257 **Examples:**
62566258
6257-
6259+ >>> import bigframes.pandas as bpd
62586260 >>> df = bpd.DataFrame({
62596261 ... 'Product': ['Product A', 'Product B', 'Product A', 'Product B', 'Product A', 'Product B'],
62606262 ... 'Region': ['East', 'West', 'East', 'West', 'West', 'East'],
@@ -6867,7 +6869,7 @@ def replace(
68676869
68686870 **Examples:**
68696871
6870-
6872+ >>> import bigframes.pandas as bpd
68716873 >>> df = bpd.DataFrame({
68726874 ... 'int_col': [1, 1, 2, 3],
68736875 ... 'string_col': ["a", "b", "c", "b"],
0 commit comments