Skip to content

Commit 5aaacfe

Browse files
committed
revert df docstrings
1 parent a97cc93 commit 5aaacfe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bigframes/dataframe.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,6 +1771,7 @@ def to_pandas(
17711771
**Examples:**
17721772
17731773
>>> import bigframes.pandas as bpd
1774+
>>> bpd.options.display.progress_bar = None
17741775
>>> df = bpd.DataFrame({'col': [4, 2, 2]})
17751776
17761777
Download the data from BigQuery and convert it into an in-memory pandas DataFrame.
@@ -1892,6 +1893,7 @@ def to_pandas_batches(
18921893
**Examples:**
18931894
18941895
>>> import bigframes.pandas as bpd
1896+
>>> bpd.options.display.progress_bar = None
18951897
>>> df = bpd.DataFrame({'col': [4, 3, 2, 2, 3]})
18961898
18971899
Iterate through the results in batches, limiting the total rows yielded
@@ -4250,6 +4252,8 @@ def _resample(
42504252
**Examples:**
42514253
42524254
>>> import bigframes.pandas as bpd
4255+
>>> import pandas as pd
4256+
>>> bpd.options.display.progress_bar = None
42534257
42544258
>>> data = {
42554259
... "timestamp_col": pd.date_range(

0 commit comments

Comments
 (0)