Hi community, Recently I received an update request for the figure I have done before, but the update is so specific that I couldn't find any appropriate solution for it. So I decided to ask here. Below is the figure which needs to be updated. Here is the update requested. “During the review of the response, It was noted that for these figures the EOT boxes should not be connected with the others”. (The part highlighted above). I think I found the responsible part in the macro (%mf_boxplot) which is created connecting lines. (I am calling the macro in the actual program). Below is the macro calling with input parameters. %mf_boxplot(data = datin, /*lab dataset to plot*/
rsl = aval, /*lab results variable to plot*/
grpvar = avisitn, /*group by variable*/
grpfmt = avisit., /*group by variable format*/
symvar = trt, /*treatment variable*/
symfmt = $trt., /*treatment variable format*/
symlab = Treatment, /*treatment label*/
connect= median, /*point to connect between boxplots*/
percent= 10,
hlabel = Visit,
vlabel = %BQUOTE(&test),
ymax = &ymax,
t = t, /*Draws tops and bottoms on the whiskers*/
bwidth = 1 /*Width of boxplots*/
); So the actual problem is to remove the connecting line between last visit and EOT. Could anyone please give some idea on this. Any response will be helpful. Thanks in advance.
... View more