1. Can you please send an example? I want to make it to a 12 point Arial style. I'm not good with fonts.
2. How would I make this to a RTF file with Arial 12 font?
3. RTF can just be copied and pasted, yes?
Thanks. Marysia
Here is my code:
ods pdf file="C:\sas\a_study\mao\new_sept_18\Case5Means.pdf" style = minimal;
data no;
set pones4;
if c5=0;
proc means n mean stderr min max range;
var final5case_percent
title 'Descriptive Stats for c5=0 Among pgys 1 = Did NOT undergo Case5'
title2 ' Checked normality- skew and kurt is fine';
run;
data yes;
set pones4;
if c5=1;
proc means n mean stderr min max range;
var final5case_percent ;
title 'Descriptive Stats for c5=1 Among pgys 1= DID undergo Case5'
title2 ' Checked normality- skew and kurt is super';
run;
ods pdf close;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.