mongo.bson.to.list(rmongodb)
mongo.bson.to.list()所属R语言包:rmongodb
Convert a mongo.bson object to an R object.
转换mongo.bson对象的R对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert a mongo.bson object to an R object.
转换mongo.bson对象的R对象。
Note that this function and mongo.bson.from.list() do not always perform inverse conversions since mongo.bson.to.list() will convert objects and subobjects to atomic vectors if possible.
请注意此功能,mongo.bson.from.list()不执行mongo.bson.to.list()的逆转换,因为转换对象和子对象,如果可能的原子向量。
This function is somewhat schizophrenic depending on the types of the fields in the mongo.bson object. If all fields in an object (or subobject/array) can be converted to the same atomic R type (for example they are all strings or all integer, you'll actually get out a vector of the atomic type with the names attribute set.
此功能是有点精神分裂症取决于类型字段在mongo.bson对象。如果对象中的所有字段(或子/阵列)可以转换为相同的原子R型(例如,他们都是字符串或所有的整数,你会真正得到一个向量的原子类型的名称属性设置。
For example, if you construct a mongo.bson object like such:
例如,如果你建造一个像这样的mongo.bson对象:
用法----------Usage----------
mongo.bson.to.list(b)
----------Arguments----------
参数:b
(mongo.bson) The mongo.bson object to convert.
(mongo.bson)的mongo.bson的对象转换。
值----------Value----------
Best guess at an appropriate R object representing the mongo.bson object.
最好的猜测在适当的R对象代表mongo.bson对象。
参见----------See Also----------
mongo.bson.from.list,<br> mongo.bson.
mongo.bson.from.list,:参考mongo.bson。
实例----------Examples----------
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Fred")
mongo.bson.buffer.append(buf, "city", "Dayton")
b <- mongo.bson.from.buffer(buf)
l <- mongo.bson.to.list(b)
print(l)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|