simple.scatterplot(UsingR)
simple.scatterplot()所属R语言包:UsingR
Simple scatter plot of x versus y with histograms of each
简单的散点图的x与Ÿ每个直方图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Shows scatterplot of x vs y with histograms of each on sides of graph. As in the example from layout.
显示直方图,散点图的x与Ÿ双方的图形。正如从布局的例子。
用法----------Usage----------
simple.scatterplot(x, y, ...)
参数----------Arguments----------
参数:x
data vector
数据向量
参数:y
data vector
数据向量
参数:...
passed to plot command
通过绘制命令
值----------Value----------
Returns the plot
返回的图
(作者)----------Author(s)----------
John Verzani
参见----------See Also----------
layout
布局
实例----------Examples----------
x<-sort(rnorm(100))
y<-sort(rt(100,3))
simple.scatterplot(x,y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|