Skip to content

Commit bb13ff4

Browse files
committed
DOC: fix up whats new stuff
1 parent c6b2cff commit bb13ff4

File tree

2 files changed

+12
-29
lines changed

2 files changed

+12
-29
lines changed

doc/source/v0.10.2.txt

-29
This file was deleted.

doc/source/v0.11.0.txt

+12
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,15 @@ Astype conversion on datetime64[ns] to object, implicity converts ``NaT`` to ``n
123123
s = s.astype('O')
124124
s
125125
s.dtype
126+
127+
128+
``Squeeze`` to possibly remove length 1 dimensions from an object.
129+
130+
.. ipython:: python
131+
132+
p = Panel(randn(3,4,4),items=['ItemA','ItemB','ItemC'],
133+
major_axis=date_range('20010102',periods=4),
134+
minor_axis=['A','B','C','D'])
135+
p
136+
p.reindex(items=['ItemA']).squeeze()
137+
p.reindex(items=['ItemA'],minor=['B']).squeeze()

0 commit comments

Comments
 (0)