Dear Statalists,
I would like to request your advice about how to make a proper box plot containing the median and IQR of a non-normal distributed variable.
I used the commands
in order to obtain the range of the variable. Then I used the command
to find the 25, 75 and interquartile range. But now the problem; how can I show this data in a graphic? I tried using
, but that helps me out with a normal box plot only.
Would love to hear your advice on this topic, thanks in advance!
Regards,
Mariska
I would like to request your advice about how to make a proper box plot containing the median and IQR of a non-normal distributed variable.
I used the commands
Code:
summ (variable), detail
Code:
tabstat (variable), stat(mean sd q iqr)
Code:
graph box
Would love to hear your advice on this topic, thanks in advance!
Regards,
Mariska
Comment