Announcement

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

  • how to use concatenate command

    hi..
    how to use concatenate command in order to add up household code and idc..
    can anyone help me out..

  • #2
    Open Stata and then type
    Code:
    help concatenate
    at the command line. It will lead you to its strcat() function.

    Otherwise, just
    Code:
    generate str concatenated = household_code + " " + idc

    Comment


    • #3
      thank u

      Comment

      Working...
      X