[pandas] annotated tag v0.6.0 created (now d89c02c)

Andreas Tille tille at debian.org
Wed Dec 28 15:20:25 UTC 2016


This is an automated email from the git hooks/post-receive script.

tille pushed a change to annotated tag v0.6.0
in repository pandas.

        at  d89c02c   (tag)
   tagging  010a620da89e5babc137b924dd1f632b4f6e6fee (commit)
  replaces  v0.5.0
 tagged by  Wes McKinney
        on  Fri Nov 25 22:21:44 2011 -0500

- Log -----------------------------------------------------------------
Version 0.6.0

Adam Klein (4):
      Added the level arguments to the series and frame math operations
      small corrections to Series repr
      ENH: Print hierarchical index names in Series.__repr__
      fixed no-name condition in multilevel index printing for series

Chang She (5):
      Issue #194 and #92. I ran test_frame and all passed
      added DataFrame.cov, Series.cov, multi-column sorting, and test cases
      added Series.cov
      Added test cases for DataFrame.cov and multi-column sorting
      Test case for Series.cov

Dieter Vandenbussche (3):
      Add kind argument to DataFrame.plot
      Handle masked arrays in DataFrame constructor
      Add unittests for DataFrame masked array constructor

Jeff Hammerbacher (1):
      ENH: add .head() and .tail() to Series

Nathan Pinger (2):
      Added a QuarterEnd class to datetools module.
      Added unit tests for QuarterEnd class in datetools module

Thomas Kluyver (1):
      Fix graphics tests under Python 3.

Wes McKinney (135):
      BUG: fix DataFrame.to_csv bug described in GH #290
      DOC: update release note
      ENH: cython count_level function, cleanup and tests
      DOC: fix exceptions in docs
      BUG: clear Series caches on consolidation, address GH #304
      DOC: release notes re: GH #304
      ENH: add melt function, speed up DataFrame.apply
      ENH: some tinkering with multi-key groupby, no changes yet
      TST: use assert_series_equal
      BUG: add DataFrame.product alias back in
      DOC: DataFrame stat method docstring cleanup/templating, some Series stat level docstring improvement, still need templating there
      BUG: catch Exception instead of TypeError in multi-groupby code, surfaced due to # of args in DataFrame.mean changing in PR #313
      ENH: add Series.isin, address GH #289
      ENH: Cython ismember function for Series.isin, really fast
      BUG: fix GH #326, start unit testing plot methods
      BUG: enable cythonized groupers to work on boolean columns, GH #315
      ENH: raise better error when cythonized groupby fails on non-numeric data, re: GH #315
      BUG: work around ndarray.round not preserving subclasses, GH #314
      BUG: make sure Series.apply always returns a Series, GH #314
      BUG: don't use __builtin__.sum in Series.order, address GH #327
      BUG: join should not fail on unconsolidated DataFrame objects, GH #331
      BUG: DataFrame can handle lists of tuples just like Series, a bit of refactoring for code reuse. GH #293
      ENH: can pass an ndarray to DataFrame.join as the join key, GH #312
      DOC: updated DataFrame.join doc to reflect that Series can be passed, GH #318
      ENH: raise better exception when can't parse date in DateRange, GH #298
      ENH: use take instead of reindex for MultiIndex with single-key groupby, too, address GH #299
      ENH: more groupby speed enhancements, skip empty groups, add GroupBy.indices field
      ENH: delete item_by_item branch in groupby
      ENH: Series.__repr__ tidying, don't print length if short
      ENH: add float_format option to Series.to_string, GH #333
      ENH: enable describe on DataFrame with no numeric columns, GH #323
      BUG: print DataFrame columns in the right order, also convert NAs in string columns, GH #325
      ENH: add skip_footer option to read_csv/read_table, GH #291
      BUG: need to shift start date 1 month back for Yahoo API, GH #329
      DOC: document DataFrame.set_index, re GH #306
      ENH: always use take in groupby, generally faster
      ENH: add Series.mad, refactor Series/DataFrame stat methods, fix GH #337 and cleanup from PR #313
      ENH: groupby: return DataFrame with selected column and as_index=False. Had to make a bit of a mess to get this to work as desired, GH #308
      ENH: use faster Cython code for DataFrame.count, GH #341
      ENH: DataFrame.drop_duplicates and DataFrame.duplicated to remove duplicate rows, GH #319
      TST: unit tests for NAs in duplicated
      TST: some benchmark scripts
      BUG: Index.union(Int64Index) failure in monotonic case
      ENH: add WLS to standard regression model
      ENH: don't assign Unnamed index name
      BUG: could not pass SparseSeries to DataFrame constructor
      ENH: add wls to moving OLS, re GH #303
      ENH: implement logical operators on DataFrame, GH #347
      ENH: raise exception when dateutil 2.0 installed on Python 2.x system, GH #346
      ENH: add converters option to read_csv/read_table, GH #343
      BUG: for multiindexed data, assumed index_col ascending but not always true, GH #349
      DOC: 0.5.1 release notes
      DOC: release note about pull reqs
      TST: DataFrame.apply test coverage
      BLD: hash to hash-bang, GH #352
      BUG: Series.__radd__ needs to be order-specific with string series, GH #353
      BUG: also fix DataFrame.__radd__, GH #353
      BUG: fix outer join with MultiIndex, is_monotonic bug fix, GH #351
      ENH: add DataFrame.dot for matrix multiplication, GH #65
      TST: oops, remove poor man's breakpoint
      ENH: add orient option to Panel.from_dict, GH #359
      ENH: add DataFrame.from_dict with orient option
      BUG: set index name attribute in single-key groupby, GH #358
      ENH: pass list of tuples/lists to DataFrame.from_records, GH #357
      ENH: function rename
      ENH: add map_infer function, use to speed up Series.map/apply, close PR #355
      add file sizes script
      BUG: preserve index name when grouping by level
      ENH: group by multiple levels, GH #103
      ENH: fast zip function for ndarrays
      ENH: deep internal tinkering, cythonized cache_readonly, engines cython ext
      ENH: add DataFrame.get_value/put_value and micro-performance tweaks, GH #360 and #361 complete
      TST: release notes and DataFrame.plot tests
      TST: misc test coverage
      TST: melt unit test (just checking success) and bugfix
      ENH: first hack at sliding window apply_along_axis in Cython
      ENH: more testing and retool multi-column sorting for better perf, GH #92
      ENH: Cython Reducer, speed up DataFrame.apply significantly, GH #309
      ENH: int64 type handling fix, tweaks, GH #309
      TST: DataFrame test coverage
      ENH: refactoring/mpl tweaking post PR #348
      BUG: broke circular reference in Index engine, sped up MultiIndex.from_tuples, GH #219
      TST: test coverage, release note
      DOC: release notes
      ENH: refactoring groupby plots, add DataFrame.boxplot function, close PR #287
      ENH: read_clipboard function using code from IPython, GH #300
      BLD: don't use print function
      BLD: python 2.5 cast to uint8
      BUG: python 3.x handle incomparables in Int64Index.union, boxplot tests and buglet
      BUG: fix consolidation with MultiIndex, fixes GH #366
      BUG: fix join op between Index/Int64Index, GH #367
      ENH: add nunique function to count unique elements, GH #297
      BLD: add cppsandbox.pyx, close #372
      ENH: use series name as the column name if passed to DataFrame constructor, GH #373
      BUG: treat min_periods=0 as 1 in moving window functions, GH #365
      ENH: unstack/stack multiple levels per #370, use Series index per note in #373
      BUG: handling of mixed-type frames in DataFrame.apply, GH #377
      ENH: enable regular expressions / long delimiters in read_table/csv, GH #364
      MSC: just use tab by default in read_clipboard
      BUG: fix regression in multi-key groupby since 0.5.0, GH #375
      ENH: pass multiple values columns to pivot_table, GH #381
      DOC: release notes
      BUG: fix empty DataFrame corner cases described in #378
      TST: plot methods return axes and test per #368, PR #385
      DOC: release notes
      BUG: fix exception in repr with tuple as Series name
      TST: benchmark scripts
      BUG: ensure return DateRange index from asfreq, GH #390
      BUG: can pass level names to swaplevel, GH #379
      BUG: don't lose names in MultiIndex.droplevel, fix #394
      ENH: enable call delevel with standard index, GH #393
      ENH: use Series name in GroupBy for result index, GH #363
      BUG: infer better return type in DataFrame.apply with empty frame, GH #389
      DOC: release notes
      BUG: stat method refactoring to start addressing #382
      ENH: more nanops refactoring, tests pass, #382
      BUG: set NA in DataFrame.min/max, fix GH #384
      ENH: refactor Series stat ops to use common nanops, test #384 for Series
      BUG: support partial setting with .ix in Series and DataFrame, refactoring, GH #397
      BUG: handle mixed-type frames carefully in unstack, GH #403
      BUG: index integer name format bug, plus handle non-string columns in groupby, GH #405
      BUG: to_html now handles column/row names and non-MultiIndex correctly, create format.py module
      BUG: careful in to_html with MultiIndex
      BUG: handle Index name in pickling, indexing test and bugfix, GH #408
      TST: fama macbeth tests
      TST: remove special regression window/cluster constants, misc testing
      BUG: don't invoke function twice in DataFrame.apply
      ENH: respect dtype argument in Panel._init_dict for missing items, GH #411
      BUG/ENH: idxmin/idxmax NA behavior should be same as other reductions, refactoring, bugfix in Cython object conversion function
      ENH: can pass args, kwds to DataFrame.apply, GH #376
      BUG: pass index name in GroupBy.apply, GH #416
      ENH: wrap NumPy C API function for detecting all integer types
      BUG: strings should not be treated as sequences in apply
      BUG: work around NumPy 1.6 bug on Python 3
      RLS: bump version to 0.6.0

Wouter Overmeire (4):
      ENH: idxmin/idxmax methods, close PR #286, had to do by hand
      DataFrame.boxplot() now returns matplotlib.axes.AxesSubplot
      Handle boxplot arguments column and grid properly.
      Add DataFrame.to_html()

-----------------------------------------------------------------------

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pandas.git



More information about the debian-science-commits mailing list