Hi,
There may be a way to save this permanently in preferences, but it is also a good candidate for a custom scripted solution. Please try the script below and see if it does what you need. This could then be packaged and distributed as an add-in or a custom menu item.
(By the way, it took less than 10 minutes to write this with the help of Workflow Builder. I saved the Fit-Y-by-X script after setting it up the way I wanted and then simply added the column dialog options at the top).
Names Default To Here( 1 );
dt=Current Data Table();
dlg = Column Dialog(
yCol = Col List( "Y, Data",
Data Type( Numeric ),
Min Col(1),
Max Col(1)
),
xCol = Col List( "X, Data",
Data Type( Character ),
Min Col(1),
Max Col(1)
),
"Select data for Fit-Y-By-X with Means and Std"
);
If( dlg["Button"] == -1, Throw( "User cancelled" ) );
Remove From( dlg ); Eval List( dlg );
//Report snapshot: DataTable - Fit Y by X of Y by X
dt << Oneway(
Y( yCol[1] ),
X( xCol[1] ),
Means and Std Dev( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 ),
SendToReport(
Dispatch(
{"Means and Std Deviations"},
"Std Err Mean",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"Lower 95%",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"Upper 95%",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"Std Dev Lower 95%",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"Std Dev Upper 95%",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"~Std Dev",
PlotColBox,
{Visibility( "Collapse" )}
)
)
);