Yes, I think it is. Or what more answer did you expect by this question?
In JMP you can realize almost everything by scripting.
And interactively you can e.g. using the by role for fitting different models on different sets.
But to get the help you want, I think you need to be more specific and give us an example of your datastructure, how it looks like.
Perhaps the enclosed script helps you to do the first step, fitting the model for several datasets in a table.
Than of course you can drag out the model,
and deploy it to other data ...
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Bivariate(
SendToByGroup( {:sex == "F"} ),
Y( :weight ),
X( :height ),
Fit Line( {Line Color( {33, 116, 145} )} ),
By( :sex ),
SendToByGroup(
{:sex == "F"},
SendToReport(
Dispatch(
{"Bivariate Fit of weight By height sex=F"},
"Linear Fit",
OutlineBox,
{Close( 1 )}
)
)
),
SendToByGroup(
{:sex == "M"},
SendToReport(
Dispatch(
{"Bivariate Fit of weight By height sex=M"},
"Linear Fit",
OutlineBox,
{Close( 1 )}
)
)
)
);
Georg