Skip to content

Commit 08297e6

Browse files
committed
Further minor doc fixes
1 parent 57e2d99 commit 08297e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/source/io.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -3837,6 +3837,7 @@ read ``chunksize`` lines from the file at a time. The ``StataReader``
38373837
object can be used as an iterator.
38383838

38393839
.. ipython:: python
3840+
38403841
reader = pd.read_stata('stata.dta', chunksize=3)
38413842
for df in reader:
38423843
print(df.shape)
@@ -3862,7 +3863,7 @@ The parameter ``convert_missing`` indicates whether missing value
38623863
representations in Stata should be preserved. If ``False`` (the default),
38633864
missing values are represented as ``np.nan``. If ``True``, missing values are
38643865
represented using ``StataMissingValue`` objects, and columns containing missing
3865-
values will have ```object`` data type.
3866+
values will have ``object`` data type.
38663867

38673868
:func:`~pandas.read_stata` and :class:`~pandas.io.stata.StataReader` supports .dta
38683869
formats 104, 105, 108, 113-115 (Stata 10-12) and 117 (Stata 13+).

0 commit comments

Comments
 (0)