How to Pass Variables to the X Parameter in Fit Life by X?
Hi everyone, I need to dynamically pass variables to the X parameter in the fit life by x
function. The first part of my code generates the analysis report as expected, but the second part only brings up the startup window without a report.
Here’s what my code looks like:Names Default To Here(1);
dt = Open( "$sample_data/big class.jmp" );
x_var = "sex";
y_var = "weight";
obj1 = dt << Fit Life by
...