I'm working through one of the free elearning SAS modules and I don't get the difference in how SAS reads the data using dlm=',' versus dsd. (I want to make a 100% on the quiz). 🙂
data work.donations;
infile "&path/donation.csv" dsd missover;
input empid q1 q2 q3 q4;
run;
data work.donations;
infile "&path/donation.csv" dlm=',' missover;
input empid q1 q2 q3 q4;
run;
Both tools use commas as delimiters. The result is different when the incoming data contains consecutive commas.
With consecutive commas, DSD treats each comma separately. Each comma marks the end of a separate variable on the INPUT statement.
However, dlm= treats consecutive commas as one long delimiter. Consecutive commas mark the end of just one variable.
Both tools use commas as delimiters. The result is different when the incoming data contains consecutive commas.
With consecutive commas, DSD treats each comma separately. Each comma marks the end of a separate variable on the INPUT statement.
However, dlm= treats consecutive commas as one long delimiter. Consecutive commas mark the end of just one variable.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.