Hi all,
printing the initial rows of a dataset is simple:
<hansl>
open denmark.gdt --quiet
print -o --range=:5
</hansl>
Printing the last n rows, however, takes another extra line
<hansl>
scalar n = $nobs-5
print -o --range=n:
</hansl>
as this does not work and fails:
<hansl>
print -o --range=($nobs-5):
</hansl>
Is my analysis correct or does there exist any other clever way?
Best
Artur