I am trying to write a script that does the same thing as fit curve>save formula>save inverse prediction formula; where the predicted values are automatically calculated and placed in a new column. I've tried a few different scripts I've seen suggested under other users questions but they haven't worked for me. The fit curve runs fine, but the values aren't input into a column.
Am I missing a line to put the inverse prediction formula into a new column? Or do I need a different script altogether?
I'm using JMP Pro 16 on Windows. Thanks!
I've tried the following:
fc=Data Table( "IgG Plate A Stacked" ) << Fit Curve(
Y( :Norm Abs ),
X( :STD curve ),
Fit Logistic 4P
);
fc <<Save inverse prediction Formula;
fc=Data Table( "IgG Plate A Stacked" ) << Fit Curve(
Y( :Norm Abs ),
X( :STD curve ),
Fit Logistic 4P
);
fc << Fit Logistic 4P(Save inverse prediction Formula);