how to rename summary table column (not column# dependent)
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 ...
