plotCompare(BGmix)
plotCompare()所属R语言包:BGmix
Scatter plot with equal axes.
等于轴的散点图。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plots a scatter plot of two variables with equal scales for the axes.
与同等规模的轴两个变量绘制散点图。
用法----------Usage----------
plotCompare(var1, var2, limi = 0, xlab = substitute(var1), ylab = substitute(var2), log = "", title = "", ...)
参数----------Arguments----------
参数:var1
data to plot (x co-ordinate)
图的数据(X坐标)
参数:var2
data to plot (y co-ordinate)
图的数据(y坐标)
参数:limi
limits of axes. If not specified, axes limits are determined from input data.
限制轴。如果没有指定,限制轴是从输入数据确定。
参数:xlab
x-axis label
X轴标签
参数:ylab
y-axis label
Y轴标签
参数:log
specifies if axes are on the log scale (as argument to 'par')
指定如果轴是对数刻度(“面值”作为参数)
参数:title
title of plot
|积业
参数:...
other parameters input to plot
其他参数输入绘制
值----------Value----------
Outputs the limits used in the plot (the input 'limi' argument if specified).
输出中的图所使用的限制(如果指定输入限制的说法)。
作者(S)----------Author(s)----------
Alex Lewin
举例----------Examples----------
x <- runif(100)
y <- rbeta(100,0.5,0.5)
plotCompare(x,y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|