Question: Using SAS Studio, I need to use formatted input (i.e. pointers and informants) to read the following text file (geocaching-1.txt) and create a temporary dataset
Using SAS Studio, I need to use formatted input (i.e. pointers and informants) to read the following text file (geocaching-1.txt) and create a temporary dataset called CACHE2:
Higgensville Hike 4030.2937446.539 Really Roaring 4027.4047442.147 Cushetunk Climb 4037.0247448.014 Uplands Trek 4030.9907452.794
Answer requires the SAS code and output from PROC PRINT.
Answer to the previous question was:
'DATA Cache;
INFILE'/home/u60652541/sasuser.v94/geocaching-1.txt'DLM='.';
INPUT name$1-20 longdeg21-22 longmin23-28 latdeg29-30 latmin31-36;
RUN;
PROCPRINTDATA= Cache;'
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
