I need to read in some csv data that does not have any variable names in it. There are 150 character variables that are questions to a test. How can I name these variables (q1,q2,q3,...) without having to list each variable in the input statement?
Use proc import with getnames=NO option.
SAS will automatically name the variables var1-var150 and you can automatically rename it
data want;
set have;
rename var1-var150=q1-q150;
run;
Thank you. That is very helpful!
If you already know the structure then you do not need to use PROC IMPORT.
data want ;
infile 'myfile' dsd lrecl=30000 truncover ;
length q1-q150 $100 ;
input q1-q150;
run;
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.