BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DmytroYermak
Lapis Lazuli | Level 10

Hi all,

 

Can you please say what does option value 'xn' mean?

 

Here it is the proc means:

 

PROC MEANS DATA  = F1 NOPRINT;
	CLASS COL0 COL1 COL2; 
	VAR D ;
	OUTPUT OUT = F_MEANS N=XN;
RUN;
1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

N= is the option meaning the count or frequency. XN is the name of the variable you are storing the value of N=. 

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20

N= is the option meaning the count or frequency. XN is the name of the variable you are storing the value of N=. 

PaigeMiller
Diamond | Level 26

XN is the name of the variable created by PROC MEANS that contains the count (because it is create by N=) of non-missing values of variable D

--
Paige Miller
DmytroYermak
Lapis Lazuli | Level 10
Thank you!
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
  • 1158 views
  • 1 like
  • 3 in conversation