Description Objects from the Class Slots Methods Author(s) See Also Examples
A class providing control over the parameters of the random walk with restarts (RWR) algorithm
Objects can be created by calls of the form makeRwrParams(c.val, threshold, maxit, verbose). Or equivalently through new{"rwrParams", ...}
c.val:Object of class "numeric" containing the probability of restart.
threshold:Object of class "numeric" containing the threshold to judge convergence.
maxit:Object of class "numeric" containing the maximum number of iterations.
verbose:Object of class "logical" specifying whether to print additional information
signature(obj = "rwrParams")
signature(obj = "rwrParams")
signature(obj = "rwrParams")
signature(obj = "rwrParams")
Daniel Bottomly
1 2 | rwr.param <- makeRwrParams(c.val=.3, threshold=1e-10, maxit=100, verbose=TRUE)
show(rwr.param)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.