DensityPlot(UsingR)
DensityPlot()所属R语言包:UsingR
Plots densities of data
图密度数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Allows one to compare empirical densities of different distributions in a simple manner. The density is used as graphs with multiple histograms are too crowded. The usage is similar to side-by-side boxplots.
允许一个用来比较的实证的密度不同的分布,以简单的方式。密度用作与多个直方图的图形太拥挤。的用法是类似的侧面侧的盒形图。
用法----------Usage----------
DensityPlot(x, ...)
参数----------Arguments----------
参数:x
x may be a sequence of data vectors (eg. x,y,z), a data frame with numeric column vectors or a model formula
x可以是一个序列的数据向量(如的x,y,z)的与数值列矢量或一个数据框的模型公式
参数:...
You can pass in a bandwidth argument such as bw="SJ". See density for details. A legend will be placed for you automatically. To overide the positioning set do.legend="manual". To skip the legend, set do.legend=FALSE.
您可以通过在带宽参数,如带宽=“SJ”。的详细信息,请参阅密度。自动为您将被置于一个传奇。在此改变定位组do.legend =“手动”。要跳过的传说,do.legend = FALSE。
值----------Value----------
Makes a plot
使图
(作者)----------Author(s)----------
John Verzani
参考文献----------References----------
参见----------See Also----------
boxplot,violinplot,density
boxplot,violinplot,density
实例----------Examples----------
## taken from boxplot[#从盒形图]
## using a formula[#使用公式]
data(InsectSprays)
DensityPlot(count ~ spray, data = InsectSprays)
## on a matrix (data frame)[#上的矩阵(数据框)]
mat <- cbind(Uni05 = (1:100)/21, Norm = rnorm(100),
T5 = rt(100, df = 5), Gam2 = rgamma(100, shape = 2))
DensityPlot(data.frame(mat))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|