TopList {rvalues} | R Documentation |
List of Top Units
Description
Returns a list of the top units ranked according to "r-value" or another specified statistic.
Usage
TopList(object, topnum = 10, sorted.by = c("RValue","PostMean","MLE","PVal"))
Arguments
object |
An object of class "rvals" |
topnum |
The length of the top list. |
sorted.by |
The statistic by which to sort; this could be |
Value
a data frame with topnum
rows and columns containing the
r-value, mle, posterior mean, and p-value rankings.
Author(s)
Nicholas Henderson and Michael Newton
See Also
Examples
n <- 500
theta <- rnorm(n)
ses <- sqrt(rgamma(n,shape=1,scale=1))
XX <- theta + ses*rnorm(n)
dd <- cbind(XX,ses)
rvs <- rvalues(dd, family = gaussian)
TopList(rvs, topnum = 12)
TopList(rvs, topnum = 15, sorted.by = "MLE")
[Package rvalues version 0.7.1 Index]