Announcement

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

  • Multiple forms of undernutrition

    Good day everyone,
    I have data on nutritional outcomes ( stunting, wasting, underweight and anemic). I want to create a variable ( MFU) which indicates a child is concurrently wasted, stunted and anemic at the same time.

    Thank you

  • #2
    Your question really isn't clear without more detail, or at a minimum it is too difficult to guess at a good answer from what you have shared. Please help us help you. Show example data. Using that example data, tell us what you would want MFU to be for a few observations. The Statalist FAQ provides advice on effectively posing your questions, posting data, and sharing Stata output.

    Also, this seems very similar to your previous topic

    https://www.statalist.org/forums/for...multiple-forms

    so explain why the techniques given there do not solve your current problem.
    Last edited by William Lisowski; 06 Feb 2022, 11:45.

    Comment


    • #3
      Ok pardon me, now understanding Stata so will get back to everyone with my question again

      Comment


      • #4
        William Lisowski is right. A look at your previous thread leads to this suggestion:

        Code:
         
         gen all3 = (stunting == 1) & (wasting == 1) & (anemia == 1)

        Comment

        Working...
        X