as.poi(rPorta)
as.poi()所属R语言包:rPorta
Coerce to poi object
强迫POI对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
as.poi attempts to turn its argument into a poi object.
as.poi试图打开它的参数到一个poi对象。
用法----------Usage----------
as.poi(v)
参数----------Arguments----------
参数:v
argument that should be turned into a poi object
应该变成一个poi对象的参数
Details
详细信息----------Details----------
Matrices with numeric values are transformed to rational values. This is done in a way that assumes that the numeric values in v represent rational values, e.g. as.poi(0.8)=4/5, but as.poi(1/3)=333333333/1e+09. For exact transformation, one possibility is to use the R package gmp, which gives the exact rational values, e.g. <br> as.bigq(0.8)=3602879701896397/4503599627370496 <br> as.bigq(1/3)=6004799503160661/18014398509481984 <br> as represented by the computer.
矩阵的数值转化为理性价值。做到这一点的方式,假定在v的数值代表理性的值,例如as.poi(0.8)=4/5,as.poi(1/3)=333333333/1e+09。确切的转型,一种可能性是使用R封装GMP,给出确切的合理值,例如:参考as.bigq(0.8)=3602879701896397/4503599627370496参考as.bigq(1/3)=6004799503160661/18014398509481984<br>物理化学学报,如由计算机表示。
as.poi also transforms strings like "1/3" to poi objects.
as.poi也将字符串,如“1/3”poi对象。
值----------Value----------
Returns a poi object.
返回一个poi对象。
(作者)----------Author(s)----------
Robin Nunkesser <a href="mailto:Robin.Nunkesser@tu-dortmund.de">Robin.Nunkesser@tu-dortmund.de</a>
参见----------See Also----------
"poi"
"poi"
实例----------Examples----------
# Convert the numeric value 0.8 to a poi object[转换为数字值0.8的POI对象]
as.poi(0.8)
# Convert the character value "1/3" to a poi object[转换的字符值“1/3”的POI对象]
as.poi("1/3")
# Convert a matrix to a poi object[转换矩阵的POI对象]
as.poi(matrix(1:16/4,ncol=4))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|