Num
Num using Run Script
Summary: Extracts degradation quantile profiler, crossing time distribution profiler, and crossing time quantile profiler text from a destructive degradation fit report.
Code:
dt = Open("data_table.jmp");
obj = dt << Run Script( "Destructive Degradation Fit" );
rpt = obj << report;
degProf = Num( rpt[Outline Box( "Degradation Quantile Profiler" )][Text Box( 6 )] << get text );
crssProbProf = Num( rpt[Outline Box( "Crossing Time Distribution Profiler" )][Text Box( 6 )] << get text );
crssTmProf = Num( rpt[Outline Box( "Crossing Time Quantile Profiler" )][Text Box( 5 )] << get text );
Code Explanation:
- Open table.
- Run destructive degradation fit.
- Get report object.
- Extract degradation quantile profiler text.
- Extract crossing time distribution profiler text.
- Extract crossing time quantile profiler text.