Announcement

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

  • Append datasets of wo different languages

    Hi all,

    I created two almost identical surveys in Qualtrics. I would now like to append both data sets in Stata. I have managed to do that. However, I have the problem that one survey is in German and the other in English. Now Stata shows me, for example, that "Female" and "Weiblich" are two different things.

    For example, Stata shoes me that there are 131 Females and 78 "Weiblich". But I need it to say me 209 Females.

    Can anybody help me with this problem?

    Many thanks in advance.


    Attached Files

  • #2
    If "Q3" is a string variable:

    Code:
    replace Q3="Female" if Q3=="Weiblich"
    If it is a numerical variable with value labels, see

    Code:
    help lab list
    and

    Code:
    help recode

    Comment


    • #3
      Thank you

      Comment

      Working...
      X