u.sys(sfsmisc)
u.sys()所属R语言包:sfsmisc
&lsquo ortable’ System function (R / S-plus)
“便携”的系统功能(R / S-PLUS)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convenient call to the underlying operating system. The main purpose has been to provide a function with identical UI both in S-PLUS and R. MM thinks you shouldn't use this anymore, usually.
方便的调用底层操作系统。的主要目的是提供一个函数具有相同的UI,无论是在S-PLUS和R MM认为你不应该使用这个了,通常。
用法----------Usage----------
u.sys(..., intern = TRUE)
参数----------Arguments----------
参数:...
any number of strings – which will be paste()d together and passed to system.
任意数量的字符串 - 这将是paste()D一起传递给system。
参数:intern
logical – note that the default is reversed from the one in system().
逻辑 - 请注意,默认是相反的一个system()。
(作者)----------Author(s)----------
Martin Maechler
参见----------See Also----------
system, really!
system,真的!
实例----------Examples----------
u.sys # shows how simply the function is defined :[简单函数的定义:]
## Not run: [#不运行:]
function (..., intern = TRUE)
system(paste(..., sep = ""), intern = intern)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|