File tree 2 files changed +8
-12
lines changed
2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,6 @@ Pandas own :ref:`10 Minutes to Pandas<10min>`
13
13
14
14
More complex recipes are in the :ref: `Cookbook<cookbook> `
15
15
16
- Tutorials
17
- ---------
18
-
19
-
20
16
Pandas Cookbook
21
17
---------------
22
18
Original file line number Diff line number Diff line change 1
1
.. _whatsnew_0131:
2
2
3
- v0.13.1 (???)
4
- -------------
3
+ v0.13.1 (February ???)
4
+ ----------------------
5
5
6
6
This is a minor release from 0.13.0 and includes a number of API changes, several new features and
7
7
enhancements along with a large number of bug fixes.
@@ -42,13 +42,13 @@ Enhancements
42
42
43
43
Now the output looks like:
44
44
45
- .. ipython:: python
45
+ .. ipython:: python
46
46
47
- df = DataFrame([ Timestamp('20010101'),
48
- Timestamp('20040601') ], columns=['age'])
49
- df['today'] = Timestamp('20130419')
50
- df['diff'] = df['today']-df['age']
51
- df
47
+ df = DataFrame([ Timestamp('20010101'),
48
+ Timestamp('20040601') ], columns=['age'])
49
+ df['today'] = Timestamp('20130419')
50
+ df['diff'] = df['today']-df['age']
51
+ df
52
52
53
53
- ``Panel.apply`` will work on non-ufuncs. See :ref:`the docs<basics.apply_panel>`.
54
54
You can’t perform that action at this time.
0 commit comments