Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: add .iloc attribute to provide location-based indexing #2922

Merged
merged 7 commits into from Mar 7, 2013

Commits on Mar 7, 2013

  1. ENH: add .loc attribute to provide location-based indexing

    TST: added multi-index tests
    
    DOC: changed loc -> iloc
         added more docs
    
    ENH: added integer lists as indexers to iloc
    
    ENH: raise correctly on out-of-bounds slicing
         support negative indexing in iloc and icol
    
    CLN: move all indexings (ix/iloc) to PandasObject in generic.py
         (except _SeriesIndexer in series.py)
         add name parameter to Indexer creation, makes indexers independent
         of their external names
    jreback committed Mar 7, 2013
    Copy the full SHA
    cb96f77 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    02ed791 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    7cc64d6 View commit details
    Browse the repository at this point in the history
  4. DOC/TST: revised indexing section in docs

             updated whatsnew
             all tests work
    
    DOC: changes suggested by Jan Schulz
         revised whatsnew to include mostly references to new indexing
    jreback committed Mar 7, 2013
    Copy the full SHA
    28c3d9a View commit details
    Browse the repository at this point in the history
  5. DOC: added 10min newbie intro to pandas

         changes in indexing suggested by Jan Schulz, and nehalecky
    
    DOC: added plotting,reshaping, more examples in setting to 10min.rst
    
    DOC: more doc updates, added more examples in selection
         added join to 10min
    
    DOC: release notes and whatsnew updates for 10min
    jreback committed Mar 7, 2013
    Copy the full SHA
    fbf1977 View commit details
    Browse the repository at this point in the history
  6. DOC: revamped dtypes section in basics.rst

         fixed removal of foo temp files in 10min
    
    DOC: added to time series in 10min.rst
    jreback committed Mar 7, 2013
    Copy the full SHA
    643e1cb View commit details
    Browse the repository at this point in the history
  7. DOC: added sorting examples to 10min

    BUG: fixed multi-index selection via loc, back to using some
         of ix code (but still do validation if not mi)
    
    ENH: add xs to Series for compatiblity, create _xs functions in all objects
    
    DOC: added several sub-sections to 10min
         fixed some references in basics.rst
    jreback committed Mar 7, 2013
    Copy the full SHA
    41793ea View commit details
    Browse the repository at this point in the history