See for yourself.
Names Default to Here( 1 );
dt = New Table( "Untitled 2",
Add Rows( 10 ),
New Column( "Full",
Numeric,
"Continuous",
Format( "Best", 12 ),
Set Values( [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] )
),
New Column( "Partial",
Numeric,
"Continuous",
Format( "Best", 12 ),
Set Values( [1, 2, 3, 4, 5, 6, 7, ., ., .] )
)
);
values = :full << Get As Matrix;
Show( Quantile( 0.1, values ) );
values = :Partial << Get As Matrix;
Show( Quantile( 0.1, values ) );
The presence of missing values changes the sample quantile, so it will of curse change the rows that are selected.