save New Window scripts into data table
I have a lengthy new window script generated by Fit Y by X. It looks like:
New Window( "y vs x",
V List Box(
Fit Group(
Bivariate(
Y( :yy ),
X( :xx ),
.......
I tried to save the new window script in the data table using:
win = New Window( "y vs x",
V List Box(
Fit Group(
Bivariate(
Y( :yy ),
X( :xx ),
.......
dt << New Table Script( "y vs x", win<<get script() );
But that didn't work.
...