getNumericValue(RXMCDA)
getNumericValue()所属R语言包:RXMCDA
Get a numeric value
得到一个数字值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extracts a numeric value (integer, real or rational) from an XML tree written according to the XMCDA standard and returns it as a real number.
根据XMCDA标准编写的一个XML树中提取一个数值(整数,实数或理性的),并返回它作为一个实数。
用法----------Usage----------
getNumericValue(tree)
参数----------Arguments----------
参数:tree
Object containing the XMCDA XML tree (in practice, only the part containing the <value> to be read).
对象XMCDA XML树(在实践中,只包含<value>要读取的部分)。
值----------Value----------
The function returns a float based on the numeric value read.
该函数返回一个浮动的基础上读取的数值。
实例----------Examples----------
tree = newXMLDoc()
newXMLNode("xmcda:XMCDA", namespace = c("xsi" = "http://www.w3.org/2001/XMLSchema-instance", "xmcda" = "http://www.decision-deck.org/2009/XMCDA-2.0.0"), parent=tree)
root<-getNodeSet(tree, "/xmcda:XMCDA")
val<-newXMLNode("value", parent=root[[1]], namespace=c())
newXMLNode("real",3.14,parent=val, namespace=c())
y<-getNodeSet(tree,"//value")
x<-getNumericValue(y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|