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
+19-19
Original file line number
Diff line number
Diff line change
@@ -387,7 +387,7 @@ Timezone API changes
387
387
388
388
- ``tz_localize`` now accepts the ``ambiguous`` keyword which allows for passing an array of bools
389
389
indicating whether the date belongs in DST or not, 'NaT' for setting transition times to NaT,
390
-
'infer' for inferring DST/non-DST, and 'raise' (default) for an AmbiguousTimeError to be raised. See :ref:`the docs<timeseries.timezone_ambiguous>` for more details (:issue:`7943`)
390
+
'infer' for inferring DST/non-DST, and 'raise' (default) for an ``AmbiguousTimeError`` to be raised. See :ref:`the docs<timeseries.timezone_ambiguous>` for more details (:issue:`7943`)
391
391
392
392
- ``DataFrame.tz_localize`` and ``DataFrame.tz_convert`` now accepts an optional ``level`` argument
393
393
for localizing a specific level of a MultiIndex (:issue:`7846`)
@@ -696,7 +696,7 @@ Consruct a scalar
696
696
# a NaT
697
697
Timedelta('nan')
698
698
699
-
Access fields for a Timedelta
699
+
Access fields for a ``Timedelta``
700
700
701
701
.. ipython:: python
702
702
@@ -920,10 +920,10 @@ Bug Fixes
920
920
- Bug in checking of table name in ``read_sql`` in certain cases (:issue:`7826`).
921
921
- Bug in ``DataFrame.groupby`` where ``Grouper`` does not recognize level when frequency is specified (:issue:`7885`)
922
922
- Bug in multiindexes dtypes getting mixed up when DataFrame is saved to SQL table (:issue:`8021`)
923
-
- Bug in Series 0-division with a float and integer operand dtypes (:issue:`7785`)
923
+
- Bug in ``Series`` 0-division with a float and integer operand dtypes (:issue:`7785`)
924
924
- Bug in ``Series.astype("unicode")`` not calling ``unicode`` on the values correctly (:issue:`7758`)
925
925
- Bug in ``DataFrame.as_matrix()`` with mixed ``datetime64[ns]`` and ``timedelta64[ns]`` dtypes (:issue:`7778`)
926
-
- Bug in ``HDFStore.select_column()`` not preserving UTC timezone info when selecting a DatetimeIndex (:issue:`7777`)
926
+
- Bug in ``HDFStore.select_column()`` not preserving UTC timezone info when selecting a ``DatetimeIndex`` (:issue:`7777`)
927
927
- Bug in ``to_datetime`` when ``format='%Y%m%d'`` and ``coerce=True`` are specified, where previously an object array was returned (rather than
928
928
a coerced time-series with ``NaT``), (:issue:`7930`)
929
929
- Bug in ``DatetimeIndex`` and ``PeriodIndex`` in-place addition and subtraction cause different result from normal one (:issue:`6527`)
@@ -932,25 +932,25 @@ Bug Fixes
932
932
- Bug in multi-index slicing with missing indexers (:issue:`7866`)
933
933
- Bug in multi-index slicing with various edge cases (:issue:`8132`)
934
934
- Regression in multi-index indexing with a non-scalar type object (:issue:`7914`)
935
-
- Bug in Timestamp comparisons with ``==`` and dtype of int64 (:issue:`8058`)
935
+
- Bug in ``Timestamp`` comparisons with ``==`` and ``int64`` dtype (:issue:`8058`)
936
936
- Bug in pickles contains ``DateOffset`` may raise ``AttributeError`` when ``normalize`` attribute is reffered internally (:issue:`7748`)
937
-
- Bug in Panel when using ``major_xs`` and ``copy=False`` is passed (deprecation warning fails because of missing ``warnings``) (:issue:`8152`).
937
+
- Bug in ``Panel`` when using ``major_xs`` and ``copy=False`` is passed (deprecation warning fails because of missing ``warnings``) (:issue:`8152`).
938
938
- Bug in pickle deserialization that failed for pre-0.14.1 containers with dup items trying to avoid ambiguity
939
939
when matching block and manager items, when there's only one block there's no ambiguity (:issue:`7794`)
940
940
- Bug in putting a ``PeriodIndex`` into a ``Series`` would convert to ``int64`` dtype, rather than ``object`` of ``Periods`` (:issue:`7932`)
941
-
- Bug in HDFStore iteration when passing a where (:issue:`8014`)
942
-
- Bug in DataFrameGroupby.transform when transforming with a passed non-sorted key (:issue:`8046`, :issue:`8430`)
941
+
- Bug in ``HDFStore`` iteration when passing a where (:issue:`8014`)
942
+
- Bug in ``DataFrameGroupby.transform`` when transforming with a passed non-sorted key (:issue:`8046`, :issue:`8430`)
943
943
- Bug in repeated timeseries line and area plot may result in ``ValueError`` or incorrect kind (:issue:`7733`)
944
-
- Bug in inference in a MultiIndex with ``datetime.date`` inputs (:issue:`7888`)
944
+
- Bug in inference in a ``MultiIndex`` with ``datetime.date`` inputs (:issue:`7888`)
945
945
- Bug in ``get`` where an ``IndexError`` would not cause the default value to be returned (:issue:`7725`)
946
946
- Bug in ``offsets.apply``, ``rollforward`` and ``rollback`` may reset nanosecond (:issue:`7697`)
947
947
- Bug in ``offsets.apply``, ``rollforward`` and ``rollback`` may raise ``AttributeError`` if ``Timestamp`` has ``dateutil`` tzinfo (:issue:`7697`)
948
-
- Bug in sorting a multi-index frame with a Float64Index (:issue:`8017`)
949
-
- Bug in inconsistent panel setitem with a rhs of a DataFrame for alignment (:issue:`7763`)
948
+
- Bug in sorting a multi-index frame with a ``Float64Index`` (:issue:`8017`)
949
+
- Bug in inconsistent panel setitem with a rhs of a ``DataFrame`` for alignment (:issue:`7763`)
950
950
- Bug in ``is_superperiod`` and ``is_subperiod`` cannot handle higher frequencies than ``S`` (:issue:`7760`, :issue:`7772`, :issue:`7803`)
951
951
- Bug in 32-bit platforms with ``Series.shift`` (:issue:`8129`)
952
952
- Bug in ``PeriodIndex.unique`` returns int64 ``np.ndarray`` (:issue:`7540`)
953
-
- Bug in groupby ``.apply`` with a non-affecting mutation in the function (:issue:`8467`)
953
+
- Bug in ``groupby.apply`` with a non-affecting mutation in the function (:issue:`8467`)
954
954
- Bug in ``DataFrame.reset_index`` which has ``MultiIndex`` contains ``PeriodIndex`` or ``DatetimeIndex`` with tz raises ``ValueError`` (:issue:`7746`, :issue:`7793`)
955
955
956
956
@@ -995,7 +995,7 @@ Bug Fixes
995
995
return a non scalar value that appeared valid but wasn't (:issue:`7870`).
996
996
- Bug in ``date_range()``/``DatetimeIndex()`` when the timezone was inferred from input dates yet incorrect
997
997
times were returned when crossing DST boundaries (:issue:`7835`, :issue:`7901`).
998
-
- Bug in ``to_excel()`` where a negative sign was being prepended to positive infinity and was absent for negative infinity (:issue`7949`)
998
+
- Bug in ``to_excel()`` where a negative sign was being prepended to positive infinity and was absent for negative infinity (:issue:`7949`)
999
999
- Bug in area plot draws legend with incorrect ``alpha`` when ``stacked=True`` (:issue:`8027`)
1000
1000
- ``Period`` and ``PeriodIndex`` addition/subtraction with ``np.timedelta64`` results in incorrect internal representations (:issue:`7740`)
1001
1001
- Bug in ``Holiday`` with no offset or observance (:issue:`7987`)
@@ -1021,7 +1021,7 @@ Bug Fixes
1021
1021
``_read`` (:issue:`7927`).
1022
1022
1023
1023
- Bug in ``DataFrame.stack()`` when one of the column levels was a datelike (:issue:`8039`)
1024
-
- Bug in broadcasting numpy scalars with DataFrames (:issue:`8116`)
1024
+
- Bug in broadcasting numpy scalars with ``DataFrame`` (:issue:`8116`)
1025
1025
1026
1026
1027
1027
- Bug in ``pivot_table`` performed with nameless ``index`` and ``columns`` raises ``KeyError`` (:issue:`8103`)
@@ -1059,15 +1059,15 @@ Bug Fixes
1059
1059
- Bug in interpolation methods with the ``limit`` keyword when no values needed interpolating (:issue:`7173`).
1060
1060
- Bug where ``col_space`` was ignored in ``DataFrame.to_string()`` when ``header=False`` (:issue:`8230`).
1061
1061
- Bug in ``to_clipboard`` that would clip long column data (:issue:`8305`)
1062
-
- Bug in DataFrame terminal display: Setting max_column/max_rows to zero did not trigger auto-resizing of dfs to fit terminal width/height (:issue:`7180`).
1062
+
- Bug in ``DataFrame`` terminal display: Setting max_column/max_rows to zero did not trigger auto-resizing of dfs to fit terminal width/height (:issue:`7180`).
1063
1063
- Bug in OLS where running with "cluster" and "nw_lags" parameters did not work correctly, but also did not throw an error
1064
1064
(:issue:`5884`).
1065
1065
- Bug in ``DataFrame.dropna`` that interpreted non-existent columns in the subset argument as the 'last column' (:issue:`8303`)
1066
-
- Bug in Index.intersection on non-monotonic non-unique indexes (:issue:`8362`).
1066
+
- Bug in ``Index.intersection`` on non-monotonic non-unique indexes (:issue:`8362`).
1067
1067
- Bug in masked series assignment where mismatching types would break alignment (:issue:`8387`)
1068
-
- Bug in NDFrame.equals gives false negatives with dtype=object (:issue:`8437`)
1068
+
- Bug in ``NDFrame.equals`` gives false negatives with dtype=object (:issue:`8437`)
1069
1069
- Bug in assignment with indexer where type diversity would break alignment (:issue:`8258`)
1070
1070
- Bug in ``NDFrame.loc`` indexing when row/column names were lost when target was a list/ndarray (:issue:`6552`)
1071
1071
- Regression in ``NDFrame.loc`` indexing when rows/columns were converted to Float64Index if target was an empty list/ndarray (:issue:`7774`)
1072
-
- Bug in Series that allows it to be indexed by a DataFrame which has unexpected results. Such indexing is no longer permitted (:issue:`8444`)
1073
-
- Bug in item assignment of a DataFrame with multi-index columns where right-hand-side columns were not aligned (:issue:`7655`)
1072
+
- Bug in ``Series`` that allows it to be indexed by a ``DataFrame`` which has unexpected results. Such indexing is no longer permitted (:issue:`8444`)
1073
+
- Bug in item assignment of a ``DataFrame`` with multi-index columns where right-hand-side columns were not aligned (:issue:`7655`)
0 commit comments