I am creating a summary table and need to rename the columns. example:
Summary(
Group( :RECIPE_FW ),
Mean ( :MTBW),
N( :MTBW ),
output table name("testOutput")
);
I found that I can reference the column # to rename:
MTBW = Column(3);
MTBW << Set Name ("MTBW (w/Outliers)");
nMTBW = Column(4);
nMTBW << Set Name ("nMTBW");
My concern with this approach is that if more columns are added/inserted, these column(#) references will then rename the wrong column. Is there a way to rename these columns within the Summary( ) portion? I tried the following and could not get it to work:
Summary(
Group( :RECIPE_FW ),
Mean ( :MTBW)<< Set Name ("MTBW (w/Outliers)"),
N( :MTBW )<< Set Name ("nMTBW"),
output table name("testOutput")
);
any help is greatly appreciated! thanks!