getting specific percentile rows from data
Hi,I'm trying to figure it out how get top 25th percentile of row values from data. basically subset the original data with top 25th percentile of values. Tried this ; dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
top_25th_perc = dt << Summary(
Group( :sex),
Quantile( :height, .25 ),
Freq( "None" ),
Weight( "None" ),
Link to original data table( 1 ),
output table name( "t...
vince_faller