Please see below the data (from a dat file) I am trying to read. I know that I need to use @@ to read the file but for some reason I am unable to do this through my program. please note that
Since the first variable (Name) has two words separated by an space, I used column format to read this variable. However, the way the data is, it is causing other issues. When I don't put double trailing, I get just the first four rows on the left and when I apply @@ the program would run indefinitely .
Data
Robin S 28 41 Bald Eagle R 102 244 Barn Owl R 50 110
Osprey R 66 180 Cardinal S 23 31 Goldfinch S 11 19
Golden Eagle R 100 234 Crow S 53 100 Magpie S 60 90
Elf Owl R 15 27 Condor R 140 300
Program
data bird;
infile '/folders/myfolders/MyRawData/Birds.dat';
input Name $1-13 Jungle $ Min Max @@;
run;