Thanks i ended up figuring it out but i would like to create one page of multiple biv plots so i stored them into a list but instead i get multiple pages of one plots. Im not sure where i went wrong
dt = Current Data Table();
//declaring variables
alpha_min = 14;
alpha_max = 18;
inc_val = 0.1;
//create list
alpha_range = {};
For( alpha_val = alpha_min, alpha_val <= alpha_max, alpha_val += inc_val,
Insert Into( alpha_range, alpha_val )
);
//loop through alpha list and create new mu cols
For( i = 1, i <= N Items( alpha_range ), i++,
alpha_x = alpha_range[i];
mu_col_name = mu_col || Char( alpha_x );
dt << New Column( mu_col_name, Numeric, Continuous, Formula( alpha_x / (alpha_x + :X) ) );
bp = dt << Bivariate( Y( Expr( Column( mu_col_name ) ) ), X( :Temp ) );
);
// use list to
colListY = {alpha_range};
For( j = 1, j <= 10, j++,
Insert Into( colListY, "mu" || Char( j ) )
);
New Window( "My output",
H List Box(
For( j = 1, j <= 10, j++,
dt << Bivariate(
Y( Eval( colListY ) ),
X( Column( dt, "Temp" ) ),
Fit Line( {Line Color( {212, 73, 88} )} )
)
)
)
);