Second, "didn't work" is meaningless even to Stata experts without explanation. It can mean anything from "Stata complained" to "Stata didn't produce the results I expected". That said, some of your results are puzzling. (B) is illegal, rather than ambiguous: Stata doesn't allow you to...
.summarize age income.tabulate age.logit outcome gender status if age > 29.scatter income educ if state == "Texas".drop if age <= 29.by gender: tabulate case exposure.by agegrp: summarize income hours One of the easiest commands to remember ishelp. If you typehelpmy topic, Stata will...
Dear all, I use -tabulate- to check the distribution of two variables. But I am interested in the difference. Which code is used to directly give the difference in value and test the significance? For example, group 1: number of new firms in area A; group 2: number of new firms in...
in which I seek to display variables <Age> and <Gender> in columns, over levels <Group> in rows: > > qui levelsof Group, local(levels) > foreach l of local levels { > tabulate Gender Age if Group == `l', row > } > > Two questions about which I'd like to ask advice: > ...
Re: st: -tabulate- looped over levels with -foreach-: how to count each subject only once, and display row percentages? From: Michael Barker <mdb96statalist@gmail.com> Prev by Date: st: 2SLS with oprobit first-stage - obtaining fitted values? Next by Date: Re: st: high-DPI eps or...
For factor variables, the tests are computed using the prefix svy: or subpop(): with tabulate twoway. Please refer to Methods and formulas in [R] dtable for details. Below, we demonstrate how to reproduce the test results for both continuous and factor variables. ...
That said, I have still have slight hopes that as the run rises (has risen) in Texas, perhaps someone from StataCorp who know the "compiled C code" of -tabulate- would comment on whether it is possible that the fastest way to produce what I meant is to -tabulate, summarize-, log ...
But "institute" and "individual" are not categories of a binary or dichotomous variable; they are measured variables with many distinct values. In fact, many, many distinct values, so many that any command based directly or indirectly on -tabulate- will fail. Also, _none_ of the commands ...