Let JMP script it for you (if you have JMP16+ even easier)
1. Open your table
2. Create your distribution
3. Right click on the Quantiles table box and Make into Data table
Slightly Script from Enhanced log:
Names Default To Here(1);
// Open Data Table: Big Class.jmp
// → Data Table("Big Class")
Open("$SAMPLE_DATA/Big Class.jmp");
// Launch platform: Distribution
Data Table("Big Class") << Distribution(Continuous Distribution(Column(:weight)));
// Make TableBox into a Data Table
// → Data Table("Untitled")
Local({obj},
obj = Data Table("Big Class") << Distribution(
Continuous Distribution(Column(:weight))
);
Report(obj)["weight", "Quantiles", Table Box(1)] << Make Into Data Table;
obj << Close Window;
);
The script can be "auto"built without enhanced log but you have to collected the scripts from different places (from distribution platform and from result tables table script)
-Jarmo