Announcement

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

  • Rescale index 0-100

    Hi, How do you rescale an additive index based on ten questions (each ranging from 1-6) so that the entire index scale from 0-100?

    All the best,

  • #2
    Theoretical or observed?

    Theoretical:
    Code:
    egen byte tot = rowtotal(question01-question10)
    generate double idx = 100 * (tot - 10) / (60 - 10)
    Observed:
    Code:
    egen byte tot = rowtotal(question01-question10)
    summarize tot, meanonly
    generate double idx = 100 * (tot - r(min)) / (r(max) - r(min))

    Comment

    Working...
    X