qpHist(qpgraph)
qpHist()所属R语言包:qpgraph
Histograms of non-rejection rates
直方图的非排斥反应发生率
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plots the distribution of non-rejection rates.
图非排斥反应发生率的分布。
用法----------Usage----------
qpHist(nrrMatrix, A=NULL,
titlehist = "all estimated\nnon-rejection rates", freq=TRUE)
参数----------Arguments----------
参数:nrrMatrix
matrix of non-rejection rates.
矩阵非排斥反应发生率。
参数:A
adjacency matrix of an undirected graph whose present and missing edges will be employed to show separately the distribution of non-rejection rates.
其目前和失踪边的无向图的邻接矩阵将分别显示非排斥反应发生率的分布。
参数:titlehist
main title of the histogram(s).
直方图(S)的主标题。
参数:freq
logical; if TRUE, the histograms show frequencies (counts) of occurrence of the different non-rejection rate values; if FALSE, then probability densities are plotted
逻辑;如果为TRUE,直方图显示频率发生在不同的非废品率值(计数);如果为FALSE,则概率密度绘制
Details
详情----------Details----------
This function plots histograms using the R-function hist and therefore the way they are displayed follows that of this R-function.
此功能图使用功能的R-hist直方图“,因此他们的显示方式如下的R-函数。
值----------Value----------
None
没有
作者(S)----------Author(s)----------
R. Castelo and A. Roverato
参考文献----------References----------
Gaussian graphical model search from microarray data with p larger than n, J. Mach. Learn. Res., 7:2621-2650, 2006.
参见----------See Also----------
qpNrr qpAvgNrr qpEdgeNrr qpGraphDensity qpClique
qpNrrqpAvgNrrqpEdgeNrrqpGraphDensityqpClique
举例----------Examples----------
require(mvtnorm)
nVar <- 50 ## number of variables[#变量]
maxCon <- 5 ## maximum connectivity per variable[#最大连接每个变量]
nObs <- 30 ## number of observations to simulate[#号观测到模拟]
A <- qpRndGraph(p=nVar, d=maxCon)
Sigma <- qpG2Sigma(A, rho=0.5)
X <- rmvnorm(nObs, sigma=as.matrix(Sigma))
nrr.estimates <- qpNrr(X, q=5, verbose=FALSE)
qpHist(nrr.estimates, A)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|