How to refer to a column in Group By() message in Bivariate Platform
I have a Bivariate Platform scripted like this:Fit Group(
biv = Bivariate( Y(Eval(Y_parameters)), X(Eval(X_parameters)), Group By (groupByColumn[1]),
SendToReport(...)
)
)
where Y_Parameters = {"Param1", "Param2"};
X_Parameters = {"Radius"};
groupByColumn = {"Lot ID"};
So, it works ONLY if my groupByColumn is a list of strings, and only if I refer to it as groupByColumn[1]if I say stringGroupBy
...