BookmarkSubscribeRSS Feed
jwestra84
Fluorite | Level 6

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?

3 REPLIES 3
Reeza
Super User

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;

jwestra84
Fluorite | Level 6

Thank you. That is very helpful!

Tom
Super User Tom
Super User

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;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 844 views
  • 0 likes
  • 3 in conversation