Hi Statalist members,
Is "use using" limited to the last observation ? I was expecting to recovery only my last 5 observations, without needing to load my large dataset entirely in memory.
any clue?
Is "use using" limited to the last observation ? I was expecting to recovery only my last 5 observations, without needing to load my large dataset entirely in memory.
Code:
. clear
. use auto.dta
(1978 automobile data)
. list make in -5/l
+-------------+
| make |
|-------------|
70. | VW Dasher |
71. | VW Diesel |
72. | VW Rabbit |
73. | VW Scirocco |
74. | Volvo 260 |
+-------------+
. clear
. use make in l using auto.dta
(1978 automobile data)
. list
+-----------+
| make |
|-----------|
1. | Volvo 260 |
+-----------+
. clear
. use make in -5/l using auto.dta
'-5' invalid observation number
r(198);

Comment