I have a dataset with a handful of variables. The first variable ("player") is a bunch of people's names, but the same player will come up many times in this column, as there are multiple observations for each user. I want to run a series of regressions - each only using the data from an individual player. And then output all of the betas/other regression details in a spreadsheet format. Is this possible?
I have been using
statsby, by(player): logit depvar indepvar1 indepvar2
and this runs the regressions, but does not give me any details beyond the betas. In particular, I need to get a list of the sums of the residuals that result from each of these regressions.
logitregressions, are you sure you want to store the sum of residuals (or squared residuals) and not the Log likelihood?runbyfrom SSC.