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

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

[复制链接]
发表于 2012-9-27 00:14:29 | 显示全部楼层 |阅读模式
mongo.count(rmongodb)
mongo.count()所属R语言包:rmongodb

                                        Count records in a collection
                                         盘点记录集合中的

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Count the number of records in a collection that match a query See http://www.mongodb.org/display/DOCS/Indexes.
计数的记录数集合中的匹配的查询http://www.mongodb.org/display/DOCS/Indexes的。


用法----------Usage----------


mongo.count(mongo, ns, query=mongo.bson.empty())



参数----------Arguments----------

参数:mongo
(mongo) A mongo connection object.
(蒙戈)蒙戈的连接对象。


参数:ns
(string) The namespace of the collection in which to add count records.
(字符串)的命名空间的集合,在其中添加盘点记录。


参数:query
mongo.bson The criteria with which to match records that are to be counted. The default of mongo.bson.empty() matches all records in the collection.  Alternately, query may be a list which will be converted to a mongo.bson object by mongo.bson.from.list().
mongo.bson的标准进行匹配计算的记录。默认情况下,的mongo.bson.empty()集合中的所有记录匹配。或者,query可能是由mongo.bson.from.list()到mongo.bson对象的列表将被转换。


值----------Value----------

(double) The number of matching records.
(双)的数量匹配的记录。


参见----------See Also----------

mongo.find,<br> mongo.find.one,<br> mongo.insert,<br> mongo.update,<br> mongo.remove,<br> mongo,<br> mongo.bson.
mongo.find,参考mongo.find.one,参考mongo.insert,参考mongo.update,参考mongo.remove,参考蒙戈,参考mongo.bson。


实例----------Examples----------


mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
    # Count the number of records in collection people of database test[统计中的记录数集合的数据库测试的人]
    people.count <- mongo.count(mongo, "test.people")
    print("total people")
    print(people.count)

    buf <- mongo.bson.buffer.create()
    mongo.bson.buffer.append(buf, "age", 21L)
    query <- mongo.bson.from.buffer(buf)

    # Count the number of records in collection people of database test[统计中的记录数集合的数据库测试的人]
    # where age == 21[年龄== 21]
    just.legal.count <- mongo.count(mongo, "test.people", query)
    print("people of age 21")
    print(just.legal.count)

    buf <- mongo.bson.buffer.create()
    mongo.bson.buffer.start.object(buf, "age")
    mongo.bson.buffer.append(buf, "$gte", 21L)
    mongo.bson.buffer.finish.object(buf)
    query <- mongo.bson.from.buffer(buf)

    # Count the number of records in collection people of database test[统计中的记录数集合的数据库测试的人]
    # where age &gt;= 21[年龄> = 21]
    total.legal.count <- mongo.count(mongo, "test.people", query)
    print("people of age 21 or greater")
    print(total.legal.count)

    # shorthand using a list:[速记使用一个列表:]
    ford.count <- mongo.count(mongo, "test.cars", list(make="Ford"))
}

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 06:37 , Processed in 0.024408 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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