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 >= 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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|