data data1;
input love time_year age;
datalines;
10 1 20
11 2 21
12 3 22
13 4 23
14 5 24
15 6 25
16 7 26
17 8 27
18 9 28
19 10 29
20 11 30
;
run;
ods pdf file='C:\Users\**bleep**\Google Drive\Computational Statistics\work1.pdf';
title "SAS Valentine";
proc g3d;
scatter love*time_year=age / color='red' shape='HEART' size=3 ctext='red' caxis='red' ;
run;
quit;
ods pdf close;
... View more