Hello,
I used the following code to create Sankey bar charts to track sleep scores for people across multiple visits. How do I adjust the height of the bars so that each bar height is proportionate to the number of people who attended each visit? Thanks
%sankeybarchart
(data=Sankey
,subject=subject
,yvar=sleep_scores
,xvar=visit
,yvarord=%str(0, 1, 2, 3, 4)
,xvarord=%str(0,1,2,3,4)
,barwidth=0.45
,xfmt=xfmt.
,legendtitle=%str(Sleep Scores)
);