0

Can you remove the category label in catplot? (ssc install catplot)

I am trying to plot a single category, e.g.

sysuse auto, clear
catplot foreign rep78 if rep78 == 3, recast(bar)

and I want to remove the "3" from the x-axis

invictus
  • 1,821
  • 3
  • 25
  • 30

1 Answers1

1
catplot foreign if rep78 == 3, recast(bar)

would seem a simpler approach.

Nick Cox
  • 35,529
  • 6
  • 31
  • 47