File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -3837,6 +3837,7 @@ read ``chunksize`` lines from the file at a time. The ``StataReader``
38373837object 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
38623863representations in Stata should be preserved. If ``False `` (the default),
38633864missing values are represented as ``np.nan ``. If ``True ``, missing values are
38643865represented 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
38683869formats 104, 105, 108, 113-115 (Stata 10-12) and 117 (Stata 13+).
You can’t perform that action at this time.
0 commit comments