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

List "Unindexed dimensions" separately in __repr__ #1221

Merged
merged 2 commits into from
Jan 22, 2017

Commits on Jan 20, 2017

  1. List "Unindexed dimensions" separately in __repr__

    Fixes GH1199
    
    Previously (on master):
    
        <xarray.Dataset>
        Dimensions:  (x: 1, y: 2)
        Coordinates:
          o x        (x) -
          o y        (y) -
        Data variables:
            foo      (x, y) int64 1 2
    
    Now:
    
        <xarray.Dataset>
        Dimensions:  (x: 1, y: 2)
        Coordinates:
            *empty*
        Unindexed dimensions:
            x, y
        Data variables:
            foo      (x, y) int64 1 2
    
    This version of the `__repr__` should be much more self-explanatory.
    shoyer committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    ecafae1 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2017

  1. Configuration menu
    Copy the full SHA
    842fd5b View commit details
    Browse the repository at this point in the history