1. Make it possible to create tempfiles in one line instead of two.
Instead of:
Make it:
2. Add the ability to sort descending with bysort.
Currently, I have to:
When I want to:
3. Add the "stable" option to "gsort," with the same functionality as in the "stable option in "sort."
Instead of:
Code:
tempfile a save `a'
Code:
temps a
Currently, I have to:
Code:
gsort id -age bys id: keep if _n==1
Code:
Bys id (-age): keep if _n==1
Comment