Hi
When I send a html graph to Microsoft word.
There always a table contains data from graph appears after the graph in word.
How can I prevent the table from appearing?
Thanks.
Here is the code I used for html graph:
data
test1;
infile datalines delimiter=',';
input target age percentage ;
datalines;
1,1,0.517
0,1,0.483
0,2,0.445
1,2,0.555
1,3,0.577
0,3,0.423
0,4,0.406
1,4,0.594
0,5,0.387
1,5,0.613
0,6,0.372
1,6,0.628
1,7,0.626
0,7,0.374
1,8,0.698
0,8,0.302
1,9,0.629
0,9,0.371
1,10,0.589
0,10,0.411
1,11,0.667
0,11,0.333
1,12,0.5
0,12,0.5
1,13,0.444
0,13,0.556
1,14,1
0,15,0.6
1,15,0.4
1,16,1
1,17,1
0,19,1
;
run;
ODS
NOPROCTITLE; TITLE;
TITLE1
"Target distribution by age";
FOOTNOTE
;
;
PROC
GCHART DATA=WORK.test1
;
VBAR
age
/
SUMVAR=percentage
SUBGROUP=target
DISCRETE
TYPE=SUM
;
RUN
; QUIT;
TITLE
; FOOTNOTE;
... View more