BookmarkSubscribeRSS Feed
jeffgreen
Fluorite | Level 6

Hi everyone,

 

I currently have a csv file, and I am wanting to name my columns using the array function. 

 

I have 37 variables- the first variable is treatment, and the next 36 are T1-T36.

 

How would I go about naming my columns?

Sorry I am new to SAS, this may sound like a dumb question.

1 REPLY 1
Kurt_Bremser
Super User

You can do this in the INPUT statement:

input treatment t1-t36;

If you need to add informats (e.g. for character variables), use brackets:

input treatment :$30. (t1-t36) (:$20.);

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 297 views
  • 0 likes
  • 2 in conversation