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.
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.
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;
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.
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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.