How to write text into a JMP report, Fit model
Hi there, I was wondering if I could get some help with writing a note into a JMP script for fitting a model. I have the following JMP script that I want to add notes in for each model fit in the group of 4: Fit Model(
SendToByGroup( {:group 1 == "A", :group 2 == "C"} ),
// add a manual note here
Y( :Y ),
By( :group 1, :group 2 ),
Effects( :X ),
Personality( "Standard Least Squares" ),
Empha
...