Skip to content

Commit 4f7c007

Browse files
author
KrishnaSai2020
committed
doctest fix
1 parent 24a8861 commit 4f7c007

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/stata.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@
178178
179179
>>> itr = pd.read_stata('filename.dta', chunksize=10000)
180180
>>> for chunk in itr:
181-
... chunk.mean() # Operate on a single chunk
181+
... # Operate on a single chunk eg chunk.mean()
182+
... pass
182183
183184
>>> import os
184185
>>> os.remove("./filename.dta")

0 commit comments

Comments
 (0)