Hello--- I am using user-written module MIDAS in Stata/MP 13.0. I am using -midas tp fp fn tn, res(sum)- to generate sensitivity and specificity with 95% confidence intervals. However, the output is only 2 decimal places. I would like the output to show me 3 decimal places.
Is there a way to force the output to show 3 decimal places? thank you in advance.
dataex tp fp fn tn
midas tp fp fn tn, res(sum)
SUMMARY PERFORMANCE ESTIMATES
Parameter Estimate 95% CI
Sensitivity 0.99 [ 0.98, 0.99]
Specificity 0.96 [ 0.92, 0.98]
Positive Likelihood Ratio 24.9 [ 12.3, 50.4]
Negative Likelihood Ratio 0.02 [ 0.01, 0.02]
Diagnostic Odds Ratio 1625 [ 670, 3940]
Is there a way to force the output to show 3 decimal places? thank you in advance.
dataex tp fp fn tn
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input int(tp fp fn tn) 34 0 1 5 28 0 0 38 53 0 1 6 75 0 0 75 94 1 1 16 125 2 3 8 82 1 0 6 99 0 2 6 43 1 2 11 89 1 0 6 91 0 0 10 208 0 4 28 69 5 2 39 165 3 2 60 94 0 1 5 129 2 4 15 84 1 0 8 92 0 3 5 68 0 1 3 93 0 1 6 end
SUMMARY PERFORMANCE ESTIMATES
Parameter Estimate 95% CI
Sensitivity 0.99 [ 0.98, 0.99]
Specificity 0.96 [ 0.92, 0.98]
Positive Likelihood Ratio 24.9 [ 12.3, 50.4]
Negative Likelihood Ratio 0.02 [ 0.01, 0.02]
Diagnostic Odds Ratio 1625 [ 670, 3940]
Comment