Announcement

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

  • stripplot question

    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.

    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)

  • #2
    stripplot is from SSC. You've tickled a bug! Thanks for the report. I'll get a fix posted when I can.

    Comment


    • #3
      Thanks for confirming. I look forward to the fix.

      Comment

      Working...
      X