Many SAS users receive data in the form of CSV (Comma Separated Value) files, and need to convert them to SAS data sets. A typical record in a CSV file might look like this:Jeter,Derek,1995,,234,”22,600,000”
Note the following about the reco…
Many SAS users receive data in the form of CSV (Comma Separated Value) files, and need to convert them to SAS data sets. A typical record in a CSV file might look like this:Jeter,Derek,1995,,234,”22,600,000”
Note the following about the reco…
Like a car loan officer hot on the heels of usability car salesmen, and
in commemoration of World Usability Day,
I’d like to list some of the papers and posters which my peers have presented at recent usability conferences.
This will give Peer Rev…
Like a car loan officer hot on the heels of usability car salesmen, and in commemoration of World Usability Day, I’d like to list some of the papers and posters which my peers have presented at recent usability conferences. This will give Peer Revue re…
You know the old joke,
Q. How can you tell an extroverted statistician from an introverted statistician?
A. The extrovert looks at your shoes when they talk.
Well, the statisticians that I work with every day are a pretty lively bunch, so th…
xterm -sb -fn fixed -ls -display $DISPLAY -bg honeydew3 &
*Create a temporary dataset… DSN;data dsn;a=1;b=2;c=3;d=4;e=5;f=6;run;%macro test(lib,dsn);*/1)*/ data _null_;      set sashelp.vtable(where=(libname=”&LIB” and memname=”&DSN”));      call symput(‘nvars’,nvar);run;*/2)*/ data …