Skip to content

Commit 9350209

Browse files
committed
revert more docs
1 parent 70021f3 commit 9350209

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bigframes/series.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ def to_pandas(
533533
**Examples:**
534534
535535
>>> import bigframes.pandas as bpd
536+
>>> bpd.options.display.progress_bar = None
536537
>>> s = bpd.Series([4, 3, 2])
537538
538539
Download the data from BigQuery and convert it into an in-memory pandas Series.
@@ -660,6 +661,7 @@ def to_pandas_batches(
660661
**Examples:**
661662
662663
>>> import bigframes.pandas as bpd
664+
>>> bpd.options.display.progress_bar = None
663665
>>> s = bpd.Series([4, 3, 2, 2, 3])
664666
665667
Iterate through the results in batches, limiting the total rows yielded
@@ -2419,6 +2421,9 @@ def _resample(
24192421
**Examples:**
24202422
24212423
>>> import bigframes.pandas as bpd
2424+
>>> import pandas as pd
2425+
>>> bpd.options.display.progress_bar = None
2426+
24222427
>>> data = {
24232428
... "timestamp_col": pd.date_range(
24242429
... start="2021-01-01 13:00:00", periods=30, freq="1s"

0 commit comments

Comments
 (0)