Dear all,
I use the TNIC data from Hoberg&Phillips and want to sort the scores pro competitor_rank1 in descending order in order to keep only the top 5 competitors for each gvkey1. I am not experienced with STATA and tried to do it using the following code, but the score is still in descending order:
clear
cd "C:\Users\etc"
use tnic3
sort gvkey1 score
gen competitor_rank = _n
sort competitor_rank gvkey1
egen competitor_rank1 = group(gvkey1)
bysort competitor_rank1 (score): gen descending_order = _n
sort competitor_rank1 -descending_order
alternative:
use tnic3
sort gvkey1 score
gen competitor_rank= _n
sort competitor_rank gvkey1
egen competitor_rank1=group(gvkey1)
sort -score competitor_rank1
(here the error is "- invalid name" even if the column is names "score")
Any help, however small would be greatly appreciated! Thank you in advance!
Related Posts with Order data in descending order
recursive regressionDear researchers, Does anyone know about the recursive regression? I need a simple explanation abou…
Appending ColumnsI have 4 different variable names that I want to collapse to a single column, though keep the identi…
Exporting confidence intervals that loop through all vars in an excel formatFor each of my regional data files, I am trying to export confidence interval tables in a csv file. …
Non parametric of ManovaHi! The title is the question. Is there a non parametric counterpart of Manova? I found that resampl…
Why the enhanced module of lclogit (lclogit2) does not converge?Dears I am estimating latent class models and i have some problems with the command lclogit2. Appar…
Subscribe to:
Post Comments (Atom)
0 Response to Order data in descending order
Post a Comment