This post was kindly contributed by From a Logical Point of View » SAS - go there to comment and to read the full post. |
Yihui of Iowa State just texted me that GitHub is programmers’ Facebook. Inspired by him(great thanks!), I also begin to play with GitHub now:
Currently I only created one repo as personal SAS code repository. To kill weekend time, I uploaded piece of codes to count the OpenCDISC validation rules by models. To use it:
filename CDISC url “https://raw.github.com/Jiangtang/Programming-SAS/master/Rules_Count_OpenCDISC_XML.sas”;
%include CDISC;
%Rules_Count_OpenCDISC_XML(dir=C:\temp\OpenCDISC\software\opencdisc-validator\config)
while get:
Happy weekend and happy programming.
This post was kindly contributed by From a Logical Point of View » SAS - go there to comment and to read the full post. |