Add Sequential ID for Observations in SAS

Posted on Jun 20, 2015 in Computer Science • Tagged with programming, SAS, SQL, sequential, ID, observation

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

data s1; set s …


Continue reading

SAS Enterprise Guide Tips

Posted on Sep 14, 2014 in Computer Science • Tagged with programming, SAS, SAS Enterprise Guide, GUI, SEG

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

  1. You can open multiple …


Continue reading

Compile MATLAB Code

Posted on Dec 07, 2012 in Computer Science • Tagged with compile, compiler, programming, MATLAB

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

  1. MATLAB code can be compile to C/C++ code or stand alone applications. Usually you can run the stand-alone application in Windows system directly, but for Linux …


Continue reading

Import/Export Data to/from SAS

Posted on Jan 30, 2015 in Computer Science • Tagged with programming, SAS, import, procedure, Excel

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

Import Data to SAS

  1. The IMPORT procedure is based on the DATA step. When you run an IMPORT procedure, the unlying data step code is printed into …


Continue reading

Tuple in SAS

Posted on May 26, 2015 in Computer Science • Tagged with programming, SAS, tuple, comma, space

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

A tuple can be …


Continue reading

Number of Observations in a SAS Dataset

Posted on May 17, 2015 in Computer Science • Tagged with programming, SAS, observation, number, dataset

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

proc sql;
    select count …

Continue reading