@@ -43,16 +43,16 @@ pandas 0.11.1
43
43
- ``HDFStore``
44
44
45
45
- will retain index attributes (freq,tz,name) on recreation (GH3499 _)
46
- - will warn with a AttributeConflictWarning if you are attempting to append
46
+ - will warn with a `` AttributeConflictWarning `` if you are attempting to append
47
47
an index with a different frequency than the existing, or attempting
48
48
to append an index with a different name than the existing
49
49
- support datelike columns with a timezone as data_columns (GH2852 _)
50
50
- table writing performance improvements.
51
51
52
52
**API Changes **
53
53
54
- - When removing an object from a store, ** store. remove(key)**, raises
55
- ** KeyError ** if ** key ** is not a valid store object.
54
+ - When removing an object from a `` HDFStore ``, `` remove(key) `` raises
55
+ `` KeyError `` if the key is not a valid store object.
56
56
- The repr() for (Multi)Index now obeys display.max_seq_items rather
57
57
then numpy threshold print options. (GH3426 _, GH3466 _)
58
58
- Added mangle_dupe_cols option to read_table/csv, allowing users
@@ -76,8 +76,6 @@ pandas 0.11.1
76
76
columns (GH3437 _)
77
77
- ``.loc `` was not raising when passed an integer list (GH3449 _)
78
78
- Unordered time series selection was misbehaving when using label slicing (GH3448 _)
79
- - Duplicate indexes with getitem will return items in the correct order (GH3455 _, GH3457 _)
80
- - Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562 _)
81
79
- Fix sorting in a frame with a list of columns which contains datetime64[ns] dtypes (GH3461 _)
82
80
- DataFrames fetched via FRED now handle '.' as a NaN. (GH3469 _)
83
81
- Fix regression in a DataFrame apply with axis=1, objects were not being converted back
@@ -92,13 +90,15 @@ pandas 0.11.1
92
90
- applymap on a DataFrame with a non-unique index now works
93
91
(removed warning) (GH2786 _), and fix (GH3230 _)
94
92
- Fix to_csv to handle non-unique columns (GH3495 _)
93
+ - Duplicate indexes with getitem will return items in the correct order (GH3455 _, GH3457 _)
94
+ - Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562 _)
95
95
- Fixed bug in groupby with empty series referencing a variable before assignment. (GH3510 _)
96
96
- Fixed bug in mixed-frame assignment with aligned series (GH3492 _)
97
97
- Fixed bug in selecting month/quarter/year from a series would not select the time element
98
98
on the last day (GH3546 _)
99
99
- Fixed a couple of MultiIndex rendering bugs in df.to_html() (GH3547 _, GH3553 _)
100
100
- Properly convert np.datetime64 objects in a Series (GH3416 _)
101
- - Raise a TypeError on invalid datetime/timedelta operations
101
+ - Raise a `` TypeError `` on invalid datetime/timedelta operations
102
102
e.g. add datetimes, multiple timedelta x datetime
103
103
- Fix ``.diff `` on datelike and timedelta operations (GH3100 _)
104
104
- ``combine_first `` not returning the same dtype in cases where it can (GH3552 _)
0 commit comments