Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • What does 1.009e-12 mean?

    What does 1.009e-12 mean? Can you show it in a decimal expression?

    How to transfer it to decimal expression in Stata?

    This number is from
    Code:
    display Ftail(1, 602, 53.08)

  • #2
    Originally posted by Yao Zhao View Post
    How to transfer it to decimal expression in Stata?
    Code:
    display %014.12f Ftail(1, 602, 53.08)

    Comment


    • #3
      1.009e-12 is a number displayed in Stata's "exponential format" (known in the days of FORTRAN as "scientific notation"). See the output of
      Code:
      help format##eformat
      for a fuller explanation. Meanwhile, some examples.
      Code:
      . display Ftail(1, 602, 53.08)
      1.009e-12
      
      . display %24.19f Ftail(1, 602, 53.08)
         0.0000000000010087558
      
      . display %24.7e Ftail(1, 602, 53.08)
                 1.0087558e-12

      Comment


      • #4
        Otherwise put, it's a trillionth plus a smidgen.

        Comment

        Working...
        X