I am trying to locate a way to export my sas code into my results. The purpose: create study notes in a SAS course I am taking, so that I can end up with the assigned task in the comments, the code I used, and the results. Example of what I need to do - I would like all of the below to appear in my results - the comment, the code, plus the results: /************************************************************************************************** Question 1: Figure out the mean and median weight from the data sashelp.bweight. **************************************************************************************************/ proc means data=sashelp.bweight Mean Median; var weight; run; The SAS System The MEANS Procedure Analysis Variable : weight Mean Median 3370.76 3402.00
... View more