Dear all,
sometimes I need to quickly list a small number of examples satisfying a certain criteria. Normally I would do it like this:
The problem is that I get a huge list and I constantly need to press q or something to cut it off. What is the official method if I just need to like list the first 20 people who are satisfying these conditions? Please note the small subtlety in the difference between the first 20 observation and the first 20 observations that satisfy this condition.
Thanks!
sometimes I need to quickly list a small number of examples satisfying a certain criteria. Normally I would do it like this:
Code:
list name year if age < 20
Thanks!

Comment