You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This example shows a programming code specified for 1 analysis and 1 output. In both cases the context attribute indicates that name and version of the computer language used for the programming code statements is "SAS Version 9.4".

  1. The programming code statements for the "Comparison of Age by Treatment" analysis are provided directly in the code attribute.
  2. The programming code statements for the "Summary of TEAE by System Organ Class and Preferred Term" output are provided by reference to the programming code document identified as "at14-5-01_sas".
YAML Example
analyses:
- name: Comparison of Age by Treatment
  id: An03_01_Age_Comp_ByTrt
  programmingCode:
    context: SAS Version 9.4
    code: 'proc glm data=ADSL;
      class TRT01A;
      model AGE=TRT01A;
      ods output OverallANOVA=results.ANOVAGE (where=(source = ''Model''));
      run;'
  ...
...
outputs: 
- id: Out14-3-2-1
  name: Summary of TEAE by System Organ Class and Preferred Term
  programmingCode:
    context: SAS Version 9.4
    documentRef:
      referenceDocumentId: at14-5-01_sas
  ...
...
  • No labels