Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.
Graph Builder Toolbar streamlines interactive graphing. Creates shortcuts on Report and GraphBuilder Helpers toolbars. Download and install the extension.
JSL instruction to call script saved with data table?
May 30, 2014 12:00 PM(16848 views)
I'm trying to call a script saved with a data table from another JSL script. Is that possible? I've used Include() before to call a JSL file, but can't figure out how to call a script that is saved with a data table.
NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/Big Class.JMP");
// Find out what scripts are stored
sl = dt << getTableScriptNames;
// Pick a script at random
s = sl[RandomInteger(1, NItems(sl))];
// Run it
s = dt << runScript(s);
// Get a reference to the analysis object
obj = Report(s) << getScriptableObject;
// Find out what messages this object understands
ShowProperties(obj);