Thank you very much, Jarmo.
I already have many scripts completed (variabilty chart, graph builder) , and I will share an example where I need this type of box plot (standard deviation). However, the actual preference is for a quantile box plot rather than a standard deviation box plot. I have read your suggestions but haven’t seen any examples using standard deviation. Could you please advise on how to create a visualization incorporating standard deviation?
To summarize I would like Box Type = Std dev ( quantile NO, Outliers NO)
VarChart = dt << Variability Chart(
Invisible,
Y( Eval( Y_list ) ),
X( Eval( X_list ) ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Show Range Bars( 0 ),
Connect Cell Means( 1 ),
Variability Summary Report( 1 ),
Std Dev Chart( 0 ),
Points Jittered( 1 ),
Show Box Plots( 1 ),
Local Data Filter(
Add Filter(
columns( :Temperature, :Corner, :Revision, :XY ),
)
),
SendToReport(
Dispatch( {}, "Mean", NumberColBox, {Set Format( "Fixed Dec", 8, 3 )} ),
Dispatch(
{},
"Std Dev",
NumberColBox,
{Set Format( "Fixed Dec", 8, 3 )}
),
Dispatch(
{},
"Minimum",
NumberColBox,
{Set Format( "Fixed Dec", 8, 3 )}
),
Dispatch(
{},
"Maximum",
NumberColBox,
{Set Format( "Fixed Dec", 8, 3 )}
),
Dispatch( {},"Variability Chart",FrameBox,{Frame Size( 1400, 800 )}), // Format A4 (Hauteur, Largeur)
Dispatch( {}, "CV", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "Std Err Mean", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "Lower 95%", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "Upper 95%", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "Range", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "Median", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "Observations", NumberColBox, {Visibility( "Collapse" )} ),
Dispatch( {}, "2", ScaleBox, {Label Row( Set Font Size( 16 ) )} )
)
);