BookmarkSubscribeRSS Feed
Amalik
Calcite | Level 5

current output filecurrent output file

Hi, 

The above pic shows my output file. Now I want to create a separate file with the parms value if the intercept term only ,winid and permno. 

If I use the keep statement, the output file still includes the values for STDER, T, PVALUE,L95B,U95B. However, I want to remove these values from my output file.

How do I do that?

 

Cheers,

Amalik

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

You keep talking about a file, an output file?  What do you mean here, are you creating a report with proc print/report?  Or a dataset?  As a dataset would be simply:

data want;
  set have (keep=winid permno intercept);
run;
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
  • 1 reply
  • 884 views
  • 0 likes
  • 2 in conversation