I plot variability chart and want to add line to connect each data point for each group to show the trend.
However, the line cannot be added.
Could you take a look if I missing anything in my code?
dt= Current Data Table();
Rp = dt << Variability Chart(
Y( :Qty ),
X( :Product, :Lot, :Defect, :Sublot, :workweek ),
Max Iter( 100 ),
Conv Limit( 0.00000001 ),
Number Integration Abscissas( 128 ),
Number Function Evals( 65536 ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Show Range Bars( 0 ),
Show Cell Means( 0 ),
Connect Cell Means( 1 ),
Std Dev Chart( 0 ),
Points Jittered( 1 ),
AIAG Labels( 0 ),
SendToReport(
Dispatch(
{"Variability Chart for Qty"},
"Variability Chart",
FrameBox,
{Frame Size( 575, 240 ), Grid Line Order( 3 ), Reference Line Order( 4 )
}
),
Dispatch(
{"Variability Chart for Qty"},
"",
NomAxisBox,
{Rotated Tick Labels( 0 )}
)
)
);