why does this syntax show the correct plot:
graph bar (mean) heartatk, over(sex)
but this syntax does not? I was trying commands that are from the book chapter
graph bar (mean) heartatk ///
,
over(sex)
why does this syntax show the correct plot:
graph bar (mean) heartatk, over(sex)
but this syntax does not? I was trying commands that are from the book chapter
graph bar (mean) heartatk ///
,
over(sex)
It works if the over is on the same line as the comma like this:
graph bar (mean) heartatk, over(sex)
same as:
graph bar (mean) heartatk ///
, over(sex)