File: v0.7.1.txt

package info (click to toggle)
pandas 0.19.2-5.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 101,196 kB
  • ctags: 83,045
  • sloc: python: 210,909; ansic: 12,582; sh: 501; makefile: 130
file content (30 lines) | stat: -rw-r--r-- 1,087 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.. _whatsnew_0701:

v.0.7.1 (February 29, 2012)
---------------------------

This release includes a few new features and addresses over a dozen bugs in
0.7.0.

New features
~~~~~~~~~~~~

  - Add ``to_clipboard`` function to pandas namespace for writing objects to
    the system clipboard (:issue:`774`)
  - Add ``itertuples`` method to DataFrame for iterating through the rows of a
    dataframe as tuples (:issue:`818`)
  - Add ability to pass fill_value and method to DataFrame and Series align
    method (:issue:`806`, :issue:`807`)
  - Add fill_value option to reindex, align methods (:issue:`784`)
  - Enable concat to produce DataFrame from Series (:issue:`787`)
  - Add ``between`` method to Series (:issue:`802`)
  - Add HTML representation hook to DataFrame for the IPython HTML notebook
    (:issue:`773`)
  - Support for reading Excel 2007 XML documents using openpyxl

Performance improvements
~~~~~~~~~~~~~~~~~~~~~~~~

  - Improve performance and memory usage of fillna on DataFrame
  - Can concatenate a list of Series along axis=1 to obtain a DataFrame (:issue:`787`)