Skip to content

Commit 7b25572

Browse files
committed
DOC: minor doc updates
1 parent 14bc445 commit 7b25572

File tree

2 files changed

+34
-6
lines changed

2 files changed

+34
-6
lines changed

doc/source/enhancingperf.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,19 @@ The ``DataFrame.eval`` method (Experimental)
442442
In addition to the top level :func:`~pandas.eval` function you can also
443443
evaluate an expression in the "context" of a ``DataFrame``.
444444

445+
.. ipython:: python
446+
:suppress:
447+
448+
try:
449+
del a
450+
except NameError:
451+
pass
452+
453+
try:
454+
del b
455+
except NameError:
456+
pass
457+
445458
.. ipython:: python
446459
447460
df = DataFrame(randn(5, 2), columns=['a', 'b'])

doc/source/v0.13.0.txt

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,32 @@
11
.. _whatsnew_0130:
22

3-
v0.13.0 (December ??, 2013)
3+
v0.13.0 (January 1, 2014)
44
---------------------------
55

66
This is a major release from 0.12.0 and includes a number of API changes, several new features and
77
enhancements along with a large number of bug fixes.
88

9-
Highlights include support for a new index type ``Float64Index``, support for new methods of interpolation, updated ``timedelta`` operations, and a new string manipulation method ``extract``.
10-
Several experimental features are added, including new ``eval/query`` methods for expression evaluation, support for ``msgpack`` serialization,
11-
and an io interface to Google's ``BigQuery``.
9+
Highlights include:
1210

13-
The docs also received a new section, :ref:`Comparison with SQL<compare_with_sql>`, which should
14-
be useful for those familiar with SQL but still learning pandas.
11+
- support for a new index type ``Float64Index``, and other Indexing enhancements
12+
- ``HDFStore`` has a new string based syntax for query specification
13+
- support for new methods of interpolation
14+
- updated ``timedelta`` operations
15+
- a new string manipulation method ``extract``
16+
- Nanosecond support for Offsets
17+
- ``isin`` for DataFrames
18+
19+
Several experimental features are added, including:
20+
21+
- new ``eval/query`` methods for expression evaluation
22+
- support for ``msgpack`` serialization
23+
- an i/o interface to Google's ``BigQuery``
24+
25+
Their are several new or updated docs sections including:
26+
27+
- :ref:`Comparison with SQL<compare_with_sql>`, which should be useful for those familiar with SQL but still learning pandas.
28+
- :ref:`Comparison with R<compare_with_r>`, idiom translations from R to pandas.
29+
- :ref:`Enhancing Performance<enhancingperf>`, ways to enhance pandas performance with ``eval/query``.
1530

1631
.. warning::
1732

0 commit comments

Comments
 (0)