noquote(base)
noquote()所属R语言包:base
Class for ‘no quote’ Printing of Character Strings
“没有报价”类字符串打印
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Print character strings without quotes.
打印不带引号的字符串。
用法----------Usage----------
noquote(obj)
## S3 method for class 'noquote'
print(x, ...)
## S3 method for class 'noquote'
c(..., recursive = FALSE)
参数----------Arguments----------
参数:obj
any R object, typically a vector of character strings.
任何R对象,通常是character字符串的向量。
参数:x
an object of class "noquote".
对象类"noquote"。
参数:...
further options passed to next methods, such as print.
进一步传递到下一个方法选项,如print的。
参数:recursive
for compatibility with the generic c function.
通用的c功能的兼容性。
Details
详情----------Details----------
noquote returns its argument as an object of class "noquote". There is a method for c() and subscript method ("[.noquote") which ensures that the class is not lost by subsetting. The print method (print.noquote) prints character strings without quotes ("\dots").
noquote类"noquote"对象返回其参数。 c()和标方法("[.noquote")的保证,不丢失,子集类有一个方法。打印方法(print.noquote)打印不带引号("\dots")的字符串。
These functions exist both as utilities and as an example of using (S3) class and object orientation.
这些功能的存在,公用事业和使用(三)class和面向对象的一个例子。
作者(S)----------Author(s)----------
Martin Maechler <a href="mailto:maechler@stat.math.ethz.ch">maechler@stat.math.ethz.ch</a>
参见----------See Also----------
methods, class, print.
methods,class,print。
举例----------Examples----------
letters
nql <- noquote(letters)
nql
nql[1:4] <- "oh"
nql[1:12]
cmp.logical <- function(log.v)
{
## Purpose: compact printing of logicals[#目的:紧凑印刷的逻辑值]
log.v <- as.logical(log.v)
noquote(if(length(log.v)==0)"()" else c(".","|")[1+log.v])
}
cmp.logical(stats::runif(20) > 0.8)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|