In SAS, you can clear log and output windows by pressing CTRL + E keyboard shortcut. You can achieve the same task using SAS code.
SAS : Clearing Log and Output Windows |
1. Clearing Log Window
DM "log; clear; ";
2. Clearing Output Window
DM "output;clear";
3. Clearing both Log and Output Windows
DM log "OUT;CLEAR;LOG;CLEAR;";
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
ReplyDelete72
73 data readin;
74 input ID Name $ Score;
75 cards;
please explain... what shows 72 73 74 75