File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ Improvements to existing features
123
123
without ``MultiIndex `` raises ``ValueError `` (:issue: `4759 `, :issue: `4837 `)
124
124
- ``read_json `` now raises a (more informative) ``ValueError `` when the dict
125
125
contains a bad key and ``orient='split' `` (:issue: `4730 `, :issue: `4838 `)
126
- - Accept Stata 13 format for reading (:issue: `4291 `)
126
+ - `` read_stata` now accepts Stata 13 format (:issue:`4291`)
127
127
128
128
API Changes
129
129
~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -312,9 +312,9 @@ Enhancements
312
312
313
313
Series(['a1', 'b2', 'c3']).str.extract('([ab])(\d)')
314
314
315
- Elements that do not match return a row of ``NaN``s.
316
- Thus, a Series of messy strings can be "converted" into a
317
- like-indexed Series or DataFrame of cleaned-up or more useful strings,
315
+ Elements that do not match return a row of ``NaN``s.
316
+ Thus, a Series of messy strings can be "converted" into a
317
+ like-indexed Series or DataFrame of cleaned-up or more useful strings,
318
318
without necessitating ``get()`` to access tuples or ``re.match`` objects.
319
319
320
320
Named groups like
@@ -329,6 +329,7 @@ Enhancements
329
329
Series(['a1', 'b2', '3']).str.match('(?P<letter>[ab])?(?P<digit>\d)')
330
330
331
331
can also be used.
332
+ - ``read_stata` now accepts Stata 13 format (:issue:`4291`)
332
333
333
334
334
335
.. _whatsnew_0130.experimental:
You can’t perform that action at this time.
0 commit comments