Hello folks, I am trying to run a multilevel ordered logistic regression because the outcome is an ordinal variable. However, I have sampling weights which I need to plug in the model as well. According to the manual for meologit which could be found here: https://www.stata.com/manuals/memeologit.pdf on page 5, it says that I need two types of sampling weight: one for level 1 and one for level 2. However, the data I am working on only had sampling weights for level 1 (the lower level). How should I deal with this? below is the syntax I am trying to use. I put question mark on the sampling weight option for level 2, which is not provided in the data. Since students were tested repetitively, so level 1 is individual student assessment scores and level 2 is student.
Code:
meologit selfconcept c.age##c.age i.group [pw = wt_sa1] || StudentID:, pweight(??) mle cluster(Cluster)
Comment