Raw data
101~lilly\5000
102&jasmine|3000
103:rose /7000
I need a data set without special characters with 3 varialbles named " id name and sal"
I created programm like this, but getting error
data a;
infile 'C:\SASUniversityEdition\myfolders\vidya\test1.txt' dlm='~' '\' '&' '|' ':' '/';
input id name $ sal;
run;
Please help me to create the correct programm
If you are using UE, the path should like this: data a; infile '/folders/myfolders/test1.txt' dlm='~' '\' '&' '|' ':' '/'; input id name $ sal; run;
You will get errors for at least two reasons: (1) SAS can't find the file and (2) you didn't specify the delimiters properly. Try this instead:
data a; infile '/folders/myfolders/vidya/test1.txt' dlm='~&|:/\'; input id name $ sal; run;
Art, CEO, AnalystFinder.com
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.