Announcement

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

  • finding the value at 98% centile

    Hello all is it possible to find the value at the 98% centile

    As you all know the sum, detail command gives the value at the 95% and 99% centile. I would like the 98%. Is this possible?


    Code:
    sum bmi, detail
    Dataset:

    Code:
    Code:
    * Example generated by -dataex-. For more info, type help dataex
    clear
    input float bmi
    21
    22
    33
    31
    12
    41
    end

  • #2
    Code:
    help centile
    . centile bmi, centile(50 95 98)
    
                                                              Binom. interp.   
        Variable |       Obs  Percentile    Centile        [95% conf. interval]
    -------------+-------------------------------------------------------------
             bmi |         6         50        26.5            12.9        40.2
                 |                   95          41        32.49097          41*
                 |                   98          41        34.42438          41*
    
    * Lower (upper) confidence limit held at minimum (maximum) of sample

    Comment

    Working...
    X