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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started