You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/v0.15.0.txt
+40-1
Original file line number
Diff line number
Diff line change
@@ -272,6 +272,46 @@ API changes
272
272
df
273
273
df.dtypes
274
274
275
+
- In prior versions, updating a pandas object inplace would not reflect in other python references to this object. (:issue:`8511`,:issue:`5104`)
276
+
277
+
.. ipython:: python
278
+
279
+
s = Series([1, 2, 3])
280
+
s2 = s
281
+
s += 1.5
282
+
283
+
Behavior prior to v0.15.0
284
+
285
+
.. code-block:: python
286
+
287
+
288
+
# the original object
289
+
In [5]: s
290
+
Out[5]:
291
+
0 2.5
292
+
1 3.5
293
+
2 4.5
294
+
dtype: float64
295
+
296
+
297
+
# a reference to the original object
298
+
In [7]: s2
299
+
Out[7]:
300
+
0 1
301
+
1 2
302
+
2 3
303
+
dtype: int64
304
+
305
+
This is now the correct behavior
306
+
307
+
.. ipython:: python
308
+
309
+
# the original object
310
+
s
311
+
312
+
# a reference to the original object
313
+
s2
314
+
275
315
- ``Series.to_csv()`` now returns a string when ``path=None``, matching the behaviour of ``DataFrame.to_csv()`` (:issue:`8215`).
276
316
277
317
- ``read_hdf`` now raises ``IOError`` when a file that doesn't exist is passed in. Previously, a new, empty file was created, and a ``KeyError`` raised (:issue:`7715`).
@@ -954,7 +994,6 @@ Bug Fixes
954
994
- Bug in ``DataFrame.reset_index`` which has ``MultiIndex`` contains ``PeriodIndex`` or ``DatetimeIndex`` with tz raises ``ValueError`` (:issue:`7746`, :issue:`7793`)
955
995
956
996
957
-
958
997
- Bug in ``DataFrame.plot`` with ``subplots=True`` may draw unnecessary minor xticks and yticks (:issue:`7801`)
959
998
- Bug in ``StataReader`` which did not read variable labels in 117 files due to difference between Stata documentation and implementation (:issue:`7816`)
960
999
- Bug in ``StataReader`` where strings were always converted to 244 characters-fixed width irrespective of underlying string size (:issue:`7858`)
0 commit comments