Announcement

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

  • Standardize variable (down) to a certain range

    I want to convert a variable A (range: 1-100) into a new variabe (range: 1.0-7.0) by standardization. How can I do this in stata? Any ideas?

  • #2
    Code:
    gen new = 1 + (6/99) * (A - 1)

    Comment

    Working...
    X