def uncertainty(self):
     """
     :return:
         Returns the uncertainty value, which has been rounded to a single
         significant digit for properly citing of the measurement
     """
     return value_ops.round_significant(abs(self.raw_uncertainty), 1)
 def uncertainty(self):
     """
     :return:
         Returns the uncertainty value, which has been rounded to a single
         significant digit for properly citing of the measurement
     """
     return value_ops.round_significant(abs(self.raw_uncertainty), 1)
 def raw_label(self):
     return '%.15g +/- %.15g' % (value_ops.round_significant(
         self.raw, 6), self.uncertainty)
 def raw_label(self):
     return '%.15g +/- %.15g' % (
         value_ops.round_significant(self.raw, 6),
         self.uncertainty
     )