Announcement

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

  • Combine list options header and sepby

    My question doesn't go far past the title - is there a way to have the list command re-display the header every time the variable specified in sepby() changes instead of every # lines? And on a separate but related note, is there a way to have the header display a variable's label rather than its name? Any help is appreciated.

  • #2
    You could do:
    Code:
    by group: list
    or
    Code:
    levelsof group, local(groups)
    foreach group of local groups{
        list if group == `group'
    }
    As for your second question, I'm afraid that option doesn't exist.

    Comment

    Working...
    X