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
Because of the default `align` value changes, coordinates of bar plots are now located on integer values (0.0, 1.0, 2.0 ...). This is intended to make bar plot be located on the same coodinates as line plot. However, bar plot may differs unexpectedly when you manually adjust the bar location or drawing area, such as using `set_xlim`, `set_ylim`, etc. In this cases, please modify your script to meet with new coordinates.
346
348
349
+
.. _whatsnew_0140.prior_deprecations:
350
+
347
351
Prior Version Deprecations/Changes
348
352
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
349
353
350
354
There are prior version deprecations that are taking effect as of 0.14.0.
351
355
352
356
- Remove ``column`` keyword from ``DataFrame.sort`` (:issue:`4370`)
353
357
358
+
- Remove ``precision`` keyword from :func:`set_eng_float_format` (:issue:`6641`)
359
+
360
+
- Remove ``force_unicode`` keyword from :meth:`DataFrame.to_string`,
361
+
:meth:`DataFrame.to_latex`, and :meth:`DataFrame.to_html`; these function
362
+
encode in unicode by default (:issue:`6641`)
363
+
364
+
- Remove ``nanRep`` keyword from :meth:`DataFrame.to_csv` and
365
+
:meth:`DataFrame.to_string` (:issue:`6641`)
366
+
367
+
- Remove ``unique`` keyword from :meth:`HDFStore.select_column` (:issue:`6641`)
368
+
369
+
- Remove ``inferTimeRule`` keyword from :func:`Timestamp.offset` (:issue:`6641`)
370
+
371
+
- Remove ``name`` keyword from :func:`get_data_yahoo` and
372
+
:func:`get_data_google` (:issue:`6641`)
373
+
374
+
- Remove ``offset`` keyword from :class:`DatetimeIndex` constructor
375
+
(:issue:`6641`)
376
+
377
+
- Remove ``time_rule`` from several rolling-moment statistical functions, such
378
+
as :func:`rolling_sum` (:issue:`6641`)
379
+
354
380
.. _whatsnew_0140.deprecations:
355
381
356
382
Deprecations
@@ -414,13 +440,12 @@ Enhancements
414
440
and data_label which allow the time stamp and dataset label to be set when creating a
415
441
file. (:issue:`6545`)
416
442
- ``pandas.io.gbq`` now handles reading unicode strings properly. (:issue:`5940`)
417
-
- Improve performance of ``CustomBusinessDay`` (:issue:`6584`)
418
443
- :ref:`Holidays Calendars<timeseries.holiday>` are now available and can be used with CustomBusinessDay (:issue:`6719`)
419
444
420
445
Performance
421
446
~~~~~~~~~~~
422
447
423
-
- perf improvements in DataFrame construction with certain offsets, by removing faulty caching
448
+
- Improve performance of DataFrame construction with certain offsets, by removing faulty caching
424
449
(e.g. MonthEnd,BusinessMonthEnd), (:issue:`6479`)
425
450
- Improve performance of ``CustomBusinessDay`` (:issue:`6584`)
426
451
- improve performance of slice indexing on Series with string keys (:issue:`6341`, :issue:`6372`)
0 commit comments