class MoreMath::Histogram

def rows

def rows
  @result.reverse_each.map { |bin|
    [ bin.left, bin.right, bin.count ]
  }
end