Announcement

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

  • Start(#) option of histogram not working

    Hi all,

    I am running into an issue where the start(#) option when using the histogram command is not changing the start value of the first bin. Can someone help me with this?

    Code example:
    Code:
    clear all
    
    
    input days 
        15
        15
        15
        25
        60
        80
        90
        110
        112
        115
        130
        140
        145
        202
        220
        260
        310
        315
        320
    end
    
    histogram days, discrete start(0) width(50) xlabel(0(50)360)
    Click image for larger version

Name:	Graph.png
Views:	1
Size:	47.0 KB
ID:	1651817

  • #2
    Omit the discrete option, which is subverting your goal. .

    A different point is that quantile would give a clearer representation here.

    Comment


    • #3
      Thanks Nick! And thank you for the quantile idea.

      Comment

      Working...
      X