Hi,
Why is stripplot not drawing the outside values like graph hbox? Do I have the syntax wrong? It did not draw the outsides in another data set I had, but did when I ran the help file.
Why is stripplot not drawing the outside values like graph hbox? Do I have the syntax wrong? It did not draw the outsides in another data set I had, but did when I ran the help file.
Code:
clear set seed 1967 set obs 100 generate x = rnormal() replace x = x + 4 in 99/100 graph hbox x, name(hbox, replace) marker(1, ms(Oh)) stripplot x, box iqr outside(ms(Oh)) ms(none) name(strip, replace)
Comment