format.pval(base)
format.pval()所属R语言包:base
Format P Values
P值格式
译者:生物统计家园网 机器人LoveR
描述----------Description----------
format.pval is intended for formatting p-values.
format.pval用于格式化的p值。
用法----------Usage----------
format.pval(pv, digits = max(1, getOption("digits") - 2),
eps = .Machine$double.eps, na.form = "NA", ...)
参数----------Arguments----------
参数:pv
a numeric vector.
数字向量。
参数:digits
how many significant digits are to be used.
重要的数字是要使用多少。
参数:eps
a numerical tolerance: see "Details".
数值公差:见“详细资料”。
参数:na.form
character representation of NAs.
字符表示NA的。
参数:...
further arguments to be passed to format such as nsmall.
进一步的参数被传递给formatnsmall的。
Details
详情----------Details----------
format.pval is mainly an auxiliary function for print.summary.lm etc., and does separate formatting for fixed, floating point and very small values; those less than eps are formatted as "< [eps]" (where "[eps]" stands for format(eps, digits)).
format.pval主要是print.summary.lm等辅助功能,并没有单独的格式固定,浮点和非常小的值;那些比eps"< [eps]"格式化(其中“[EPS]”format(eps, digits))。
值----------Value----------
A character vector.
字符向量。
举例----------Examples----------
format.pval(c(stats::runif(5), pi^-100, NA))
format.pval(c(0.1, 0.0001, 1e-27))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|