找回密码
 注册
查看: 544|回复: 0

R语言 rmongodb包 mongo.bson.from.list()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 00:11:57 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-24 04:28 , Processed in 0.033458 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表