Hi,

I'd like to generate two, or three-way tables and graphs using tabout and graph, but without displaying the "0" value. My current code (for the two-way table) is:
Code:
tabout VAR MALE using "TABLE'.tex", append f(0c) style(tex) font(bold) bt lines(none) h1(nil) h2(nil) cells(col) ptotal(none) h3("\midrule \textbf{TABLE: TABLE} \\")
graph bar, over(VAR) over(MALE) asyvars blabel(bar, format(%9.0f)) percentages title("TABLE") ytitle("Percentage") name(g1, replace)
where VAR=0 or VAR=1. I would like to only display the percentages for VAR==1.

Thank you