GitHub and Weekend Programming

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:

https://github.com/Jiangtang

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:

OC_by_model

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.