Column: Mask Cells by Condition
Mask cells based on condition
1. colmask irng:=2 cond:=sd nSD:=2; //Mask the cell values in column 2 which outlie 2SD from the mean
2. colmask irng:=3 cond:=gt val:=0.3; //mask cells in column 3 which is greater than 0.3
Please refer to the page for additional option switches when accessing the x-function from script
Input
Range
int
Option list:
colmask nSD:=1.5;
double
This function masks the input values which match the condition.
newbook; string fn$=system.path.program$+"\Samples\Signal Processing\Average Sunspot.dat"; impasc fname:=fn$; colmask irng:=2 cond:=sd;
wcellmask