BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
felipeespi
Calcite | Level 5

I was wondering if someone could help me with a simple but yet complex task that's driving me nuts.  Thanks.

My data set in excel

dogcatmicecamelpigeoncowgoatfishhorsedonkeymonkeylionrat
970.2525340.572243184345633122315440.69

I want to create two variables 'animals' and 'weight' to match each animal in columns with respective weight without modifying the data. Just by using proc import and or proc sort.

proc import datafile='E:\Copy of final examination.xls' out=Animals dbms=xls replace;sheet=animals;run;

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

The trick is to use function vname to get the variable names and the _NUMERIC_ variable list to populate an array :

data want;

set animals;

array v{*} _NUMERIC_;

do i = 1 to dim(v);

     animal = vname(v{i});

     weight = v{i};

     output;

     end;

keep animal weight;

run;

PG

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

The trick is to use function vname to get the variable names and the _NUMERIC_ variable list to populate an array :

data want;

set animals;

array v{*} _NUMERIC_;

do i = 1 to dim(v);

     animal = vname(v{i});

     weight = v{i};

     output;

     end;

keep animal weight;

run;

PG

PG
felipeespi
Calcite | Level 5

Wow thank you for your help that's exactly what I was trying to figure out!

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
  • 2 replies
  • 837 views
  • 0 likes
  • 2 in conversation