Description Usage Arguments Details Value Author(s) Examples
Calculate some basic network characteristics of the top ranked genes
1 | netwAttr(mAPKLObj, net="clr")
|
mAPKLObj |
An object of mAPKL class. |
net |
The network reconstruction method to be employed. The user may select between "clr" (default), "aracne.a" and "aracne.m". |
It calculates some basic network characteristics. Those include the "degree",
the "closeness", the "betweenness", and finally the "transitivity" or else
clustering coefficient. We calculate the weighted values for both local and
global scores.
The three available network reconstruction options are:
clr: Context Likelihood or Relatedness Network
aracne.a: Algorithm for the Reconstruction of Accurate Cellular Networks (additive model)
aracne.m: Algorithm for the Reconstruction of Accurate Cellular Networks (multiplicative model)
Upon successful completion, the function returns an
NetAttr
object.
Argiris Sakellariou
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(mAPKLData)
data(mAPKLData)
breast <- sampling(Data=mAPKLData, valPercent=40, classLabels="type", seed=135)
normTrainData <- preprocess(breast$trainData)
normTestData <- preprocess(breast$testData)
exprs(breast$trainData) <- normTrainData$clL2.normdata
exprs(breast$testData) <- normTestData$clL2.normdata
out.clL2 <- mAPKL(trObj=breast$trainData, classLabels="type",
valObj=breast$testData, dataType=7)
net.attr <- netwAttr(mAPKLObj=out.clL2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.