Skip to content

Commit

Permalink
Show 2D data shape in Data Info window (closes #623)
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisodriscoll committed Aug 19, 2016
1 parent 479799c commit 45d7662
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/sas/sascalc/dataloader/data_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,7 @@ def __str__(self):
_str += " X- & Y-axis: %s\t[%s]\n" % (self._yaxis, self._yunit)
_str += " Z-axis: %s\t[%s]\n" % (self._zaxis, self._zunit)
_str += " Length: %g \n" % (len(self.data))
_str += " Shape: (%d, %d)\n" % (len(self.y_bins), len(self.x_bins))
return _str

def clone_without_data(self, length=0, clone=None):
Expand Down

0 comments on commit 45d7662

Please sign in to comment.