print.dataframe(base)
print.dataframe()所属R语言包:base
Printing Data Frames
打印数据框
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Print a data frame.
打印一个数据框。
用法----------Usage----------
## S3 method for class 'data.frame'
print(x, ..., digits = NULL,
quote = FALSE, right = TRUE, row.names = TRUE)
参数----------Arguments----------
参数:x
object of class data.frame.
对象类data.frame。
参数:...
optional arguments to print or plot methods.
print或plot方法的可选参数。
参数:digits
the minimum number of significant digits to be used: see print.default.
要使用的有效位数的最低数量:见print.default。
参数:quote
logical, indicating whether or not entries should be printed with surrounding quotes.
逻辑,说明是否参赛作品应与周边报价印刷。
参数:right
logical, indicating whether or not strings should be right-aligned. The default is right-alignment.
逻辑,说明是否字符串应该是右对齐。默认是右对齐。
参数:row.names
logical (or character vector), indicating whether (or what) row names should be printed.
逻辑(或特征向量),指示(或)是否应印有行名。
Details
详情----------Details----------
This calls format which formats the data frame column-by-column, then converts to a character matrix and dispatches to the print method for matrices.
这就要求format格式的数据框列列,然后将其转换为一个字符矩阵和调度print矩阵方法。
When quote = TRUE only the entries are quoted not the row names nor the column names.
当quote = TRUE只有条目均以行的名称,也不是列名。
参见----------See Also----------
data.frame.
data.frame。
举例----------Examples----------
(dd <- data.frame(x=1:8, f=gl(2,4), ch=I(letters[1:8])))
# print() with defaults[打印()与违约]
print(dd, quote = TRUE, row.names = FALSE)
# suppresses row.names and quotes all entries[抑制row.names和报价的所有条目]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|