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

 

ods output onewayfreqs=onefreq (drop=f_name f_sex);
proc freq data=sashelp.class;
tables name sex;
run;
ods output close;

 

here i've run the program ...

log shown like this..

 

WARNING: The variable f_sex in the DROP, KEEP, or RENAME list has never been referenced

 

in that onefreq dataset i don't need f_name, f_sex variables so that i used code like this...

tell me the way to avoid this warning..

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenKuhfeld
Ammonite | Level 13

You could avoid the warning by dropping the variables in a subsequent data step.

 

FREQ is making the first data set based on the first tabled variable.

Then it makes the second data set based on the second tabled variable.

At this phase it reconciles the different variables in the first and send data sets and combines them into one.

At the first step, it does not know about the second part, so you get a warning.

View solution in original post

3 REPLIES 3
rajeshV89
Fluorite | Level 6

 

in this warning it mentioned f_sex only but i've given f_name and f_sex in drop option...

 

sas didn't considered f_name varaiable here?

 

but ouput dataset doesn't contains both of the variables..

WarrenKuhfeld
Ammonite | Level 13

You could avoid the warning by dropping the variables in a subsequent data step.

 

FREQ is making the first data set based on the first tabled variable.

Then it makes the second data set based on the second tabled variable.

At this phase it reconciles the different variables in the first and send data sets and combines them into one.

At the first step, it does not know about the second part, so you get a warning.

rajeshV89
Fluorite | Level 6

thanks for ur answer...

 

i got to know the process the proc freq does...

 

again thanks..

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1577 views
  • 0 likes
  • 2 in conversation