plot.dataframe(graphics)
plot.dataframe()所属R语言包:graphics
Plot Method for Data Frames
数据框图法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
plot.data.frame, a method for the plot generic. It is designed for a quick look at numeric data frames.
plot.data.frame,plot通用的方法。它是专为在数值数据框的快看。
用法----------Usage----------
## S3 method for class 'data.frame'
plot(x, ...)
参数----------Arguments----------
参数:x
object of class data.frame.
对象类data.frame。
参数:...
further arguments to stripchart, plot.default or pairs.
进一步的论据,stripchartplot.default或pairs。
Details
详情----------Details----------
This is intended for data frames with numeric columns. For more than two columns it first calls data.matrix to convert the data frame to a numeric matrix and then calls pairs to produce a scatterplot matrix). This can fail and may well be inappropriate: for example numerical conversion of dates will lose their special meaning and a warning will be given.
这是用于数字列的数据框。两个多列,它首先调用data.matrix数据框转换成数字矩阵,然后调用pairs产生的散点图矩阵)。这可能会失败,也可能是不适当的,例如:数值转换日期将失去其特殊的意义,将给予警告。
For a two-column data frame it plots the second column against the first by the most appropriate method for the first column.
对于一个两列的数据框图首先由第一列的最适当的方法对第二列。
For a single numeric column it uses stripchart, and for other single-column data frames tries to find a plot method for the single column.
它为一个单一的数字列使用stripchart,和其他单列的数据框,试图找到单列图方法。
参见----------See Also----------
data.frame
data.frame
举例----------Examples----------
plot(OrchardSprays[1], method="jitter")
plot(OrchardSprays[c(4,1)])
plot(OrchardSprays)
plot(iris)
plot(iris[5:4])
plot(women)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|