how i can do this
title |
1 |
2 |
3 |
4 |
5 |
6 |
title |
2 |
3 |
4 |
5 |
6 |
. |
// incorrect way sysuse auto, clear replace make=make[_n-1] list make price // correct way (one of) sysuse auto, clear tempvar idx generate long `idx'=_n gsort -`idx' replace make=make[_n+1] gsort `idx' drop `idx' list make price
Comment