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

Hi everyone,

 

I have a time-series of residuals (along with company, date) obtained from the "Reg" procedure, I would like to resample the residual series by the company (each has different number of observations), and make the sample size of each company equal to the number of observations that company has.

 

I would like to use the following example. My question is how do I change that "19" in number of observations into something that changes based on each company.

 

%if &lib = sashelp and &data = class %then %let numobs = 19;

Any suggestion would be greatly appreciated.

 

Thank you very much.

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

Sysfunc simply allows to use SAS functions inside the macro language.

 

Here is full working code:

%macro t;
  %local lib data dsid numobs rc;
  %let lib= SASHELP;
  %let data = CLASS;
  %if &lib = SASHELP and &data = CLASS %then %do;
     %let dsid   = %sysfunc(open(&lib..&data));
     %let numobs = %sysfunc(attrn(&dsid,nobs));
     %let rc     = %sysfunc(close(&dsid     ));
  %end;
  %put &=numobs;
%mend;
%t

NUMOBS=19

So here we open a table, extract NOBS from its metadata and close the table.

 

 

View solution in original post

7 REPLIES 7
ChrisNZ
Tourmaline | Level 20

Like this?

%if &lib = SASHELP and &data = CLASS %then %do;
   %let dsid   = %sysfunc(open(&lib..&data));
   %let numobs = %sysfunc(attrn(&dsid,nobs));
   %let rc     = %sysfunc(close(&dsid     ));
%end;
KrisDeng
Obsidian | Level 7
Thank you very much for your reply. Since I still having a hard time applying your codes to mine, I'd really appreciate it if you could kindly elaborate the logic behind the use of sysfunc.
ChrisNZ
Tourmaline | Level 20

Sysfunc simply allows to use SAS functions inside the macro language.

 

Here is full working code:

%macro t;
  %local lib data dsid numobs rc;
  %let lib= SASHELP;
  %let data = CLASS;
  %if &lib = SASHELP and &data = CLASS %then %do;
     %let dsid   = %sysfunc(open(&lib..&data));
     %let numobs = %sysfunc(attrn(&dsid,nobs));
     %let rc     = %sysfunc(close(&dsid     ));
  %end;
  %put &=numobs;
%mend;
%t

NUMOBS=19

So here we open a table, extract NOBS from its metadata and close the table.

 

 

KrisDeng
Obsidian | Level 7
Thank you very much. This is much clearer to me now.
KrisDeng
Obsidian | Level 7
Hi Chris,

The codes worked perfectly. I wonder if this &numobs can be changing for each group, reflecting its separate number of observation?

Thank you very much.
ChrisNZ
Tourmaline | Level 20

Unsure what you are asking, Like this?

%macro t;
  %local lib data dsid numobs rc;
  %let lib= SASHELP;
  %let data = CLASS;
  %if &lib = SASHELP and &data = CLASS %then %do;
     %let dsid   = %sysfunc(open(&lib..&data(where=(AGE=12))));
     %let numobs = %sysfunc(attrn(&dsid,nlobsf));
     %let rc     = %sysfunc(close(&dsid       ));
  %end;
  %put &=numobs;
%mend;
%t

NUMOBS=5

KrisDeng
Obsidian | Level 7
Exactly. Thank you very much!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 7 replies
  • 1856 views
  • 3 likes
  • 2 in conversation