Hi,
V1 is outcome. First code below gives me 'mean with std. error (SE)' for each group.
Does the second code take clustering into account and return correct SE for each group?
V1 is outcome. First code below gives me 'mean with std. error (SE)' for each group.
Does the second code take clustering into account and return correct SE for each group?
Code:
mixed V1 [pweight=weight] || GroupingVariable: , pwscale(size) variance ml
Code:
mean V1 [pweight=weight], over(GroupingVariable)
Comment