With a local data filter, you have to get the non-excluded rows on your own:
dt = Open( "$DOWNLOADS/ChicagoWind.jmp" );
biv = dt << Bivariate(
Y( :Lat1 ),
X( :Lon1 ),
Show Points( 1 ),
);
ldf = biv << Local Data Filter(
Add Filter(
columns( :STN ),
Where( :STN == "BIV" )
)
);
Report( biv )[FrameBox( 1 )] << Add Graphics Script(
Pen Size( 2 );
myRows = ldf << Get Filtered Rows;
For Each Row(
If( Loc( myRows, Row() ),
Arrow( {:Lon1, :Lat1}, {:Lon2, :Lat2} )
)
);
);