Announcement

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

  • Breaking down Data by Race, Class, etc. (e.g., Identity Markers)

    Hello! I have significant results following a gsem regression. I would now like to subset my results by identity. Specifically, I know that females in X country vote Y way, but how would I figure out how this breaks down by race, class, levels of literacy, etc.)?

    Would I modify the regression, run t-tests, etc.?

    Thank you in advance for answering my query.

  • #2
    could use margins, I suppose.
    Code:
    margins, at(female = 1 white=1 class=1 literacy=1)
    you can also
    Code:
    margins, at(female = (0 1) white=1 class=1 literacy=1) post
    and then test the margins for equality.
    HTML Code:
    https://www.stata.com/statalist/archive/2011-05/msg01020.html


    Comment


    • #3
      Thank you! Would "if(inlist)" also work?

      Comment

      Working...
      X