Description Usage Arguments Value Author(s) See Also Examples
Compute log10 of a numerical vector combined with thresholding on minimum value.
1 2 3 4 5 6 |
x |
|
filtParams |
|
... |
Not used |
clipped log10 of an input numeric
vector
.
Alex Lisovich, Roger Day
For more information see DataFilter
.
1 2 3 4 5 6 7 8 | #compute log10 transform of mrna experiment data replacing (clipping)
#the output values with log10(0.5)for input values < 0.5
fltExperimentSet<-DataFilter$do.apply(examples$mrnaExperimentSet,
byRows=TRUE,filterFun=DataFilter$logTen,filtParams=c(0.5,log10(0.5)),verbose=TRUE);
#print the number of elements clipped
sum(fltExperimentSet[,-1]==log10(0.5))-sum(examples$mrnaExperimentSet[,-1]<=0.5);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.