Description Usage Arguments Value Author(s) See Also Examples
Function utild2clean
is applied to a pair of matrices and clean them from outliers with a rule specified by user (outliers will be replaced by the threshold values)
1 | utild2clean(d2arr0, d2arr1, method = "bothends", nsigma = 3)
|
d2arr0 |
matrix to be cleaned |
d2arr1 |
matrix to be cleaned |
method |
specifies if outliers are to be removed from one or both side of matrix value distribution
|
nsigma |
number of sigmas to be considered as threshold for outlier removal |
clean0 |
result of d2arr0 cleaning |
clean1 |
result of d2arr1 cleaning |
Vitaly Efremov <vitaly.efremov@dcu.ie>
1 2 3 4 5 6 | s0<-array(c(-1,1,3,7,10),c(2,5))
s1<-array(c(rep(c(1,2),7),20), c(5,3))
s0;s1
a<-utild2clean(d2arr0=s0, d2arr1=s1); a
a<-utild2clean(s0, s1, method='left', nsigma=0.3); a
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.