mongo.bson.from.list(rmongodb)
mongo.bson.from.list()所属R语言包:rmongodb
Convert a list to a mongo.bson object
列表转换到mongo.bson对象中
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert a list to a mongo.bson object.
列表转换到mongo.bson对象。
This function permits the simple and convenient creation of a mongo.bson object. This bypasses the creation of a mongo.bson.buffer, appending fields one by one, and then turning the buffer into a mongo.bson object with mongo.bson.from.buffer().
该功能允许简单和方便的创建的mongo.bson对象。这将绕过创造的mongo.bson.buffer,追加领域的一个又一个,然后把缓冲到一个mongo.bson的对象mongo.bson.from.buffer()。
Note that this function and mongo.bson.to.list() do not always perform inverse conversions since mongo.bson.to.list() will convert objects and subobjects to atomic vectors if possible.
注意,这个函数和mongo.bson.to.list()不总是执行反转换,,因为mongo.bson.to.list()将其转换对象和子对象,如果可能的原子向量。
用法----------Usage----------
mongo.bson.from.list(lst)
参数----------Arguments----------
参数:lst
(list) The list to convert. This must be a list, not a vector of atomic types; otherwise, an error is thrown; use as.list() as necessary.
(列表)的列表转换。这必须是一个列表,而不是一个原子类型的向量,否则,抛出一个错误使用as.list()需要。
值----------Value----------
(mongo.bson) A mongo.bson object serialized from lst.
(mongo.bson)一个mongo.bson的序列化的对象从lst。
参见----------See Also----------
mongo.bson.to.list,<br> mongo.bson,<br> mongo.bson.destroy.
mongo.bson.to.list,参考mongo.bson,参考mongo.bson.destroy。
实例----------Examples----------
lst <- list(name="John", age=32)
b <- mongo.bson.from.list(lst)
# the above produces a BSON object of the form:[上述产生的BSON对象的形式:]
# { "name" : "John", "age" : 32.0 }[{“名称”:“约翰”,“年龄”:32.0}]
# Convert a vector of an atomic type to a list and[转换到一个列表中的一个原子类型的向量和]
# then to a mongo.bson object[然后到一个mongo.bson对象]
v <- c(president="Jefferson", vice="Burr")
b <- mongo.bson.from.list(as.list(v))
# the above produces a BSON object of the form:[上述产生的BSON对象的形式:]
# { "president" : "Jefferson", "vice" : "Burr" }[{“总统”:“杰斐逊”,“副”:“毛刺”}]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|