File tree 1 file changed +2
-1
lines changed
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``
3837
3837
object can be used as an iterator.
3838
3838
3839
3839
.. ipython :: python
3840
+
3840
3841
reader = pd.read_stata(' stata.dta' , chunksize = 3 )
3841
3842
for df in reader:
3842
3843
print (df.shape)
@@ -3862,7 +3863,7 @@ The parameter ``convert_missing`` indicates whether missing value
3862
3863
representations in Stata should be preserved. If ``False `` (the default),
3863
3864
missing values are represented as ``np.nan ``. If ``True ``, missing values are
3864
3865
represented using ``StataMissingValue `` objects, and columns containing missing
3865
- values will have ``` object `` data type.
3866
+ values will have ``object `` data type.
3866
3867
3867
3868
:func: `~pandas.read_stata ` and :class: `~pandas.io.stata.StataReader ` supports .dta
3868
3869
formats 104, 105, 108, 113-115 (Stata 10-12) and 117 (Stata 13+).
You can’t perform that action at this time.
0 commit comments