Announcement

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

  • bandplot - how to remove variable name?

    I am using Nick Cox's command bandplot.

    Code:
    sysuse auto
    bandplot (mpg turn) foreign, categorical(foreign)
    How would I suppress the variable name "foreign" in the far left on the output, so that only things displayed were the labels "Domestic" and "Foreign"?

    With best wishes and thanks,

    Jane

  • #2
    bandplot is from SSC and was something I worked on in 2008 -- and have hardly used since. It's at least partly superseded by designplot from the Stata Journal, although I don't think that helps here.


    Code:
    bandplot (mpg turn) foreign, categorical(foreign) xopts(label(nolabels))
    appears to be what you need.

    Comment


    • #3
      Just what I needed - thank you so much!

      Comment

      Working...
      X