敏捷数据科学 - 收集和显示记录
在本章中,我们将重点关注 JSON 结构,它构成了"敏捷方法论"的一部分。 MongoDB 是一种广泛使用的 NoSQL 数据结构,操作简单,用于收集和显示记录。
步骤 1
此步骤涉及与 MongoDB 建立连接以创建集合和指定的数据模型。 您只需执行"mongod"命令来启动连接,并执行 mongo 命令来连接到指定终端。
步骤 2
创建一个新数据库,用于创建 JSON 格式的记录。 现在,我们正在创建一个名为"mydb"的虚拟数据库。
>use mydb switched to db mydb >db mydb >show dbs local 0.78125GB test 0.23012GB >db.user.insert({"name":"Agile Data Science"}) >show dbs local 0.78125GB mydb 0.23012GB test 0.23012GB
步骤 3
为了获取记录列表,必须创建集合。 此功能有利于数据科学研究和输出。
>use test switched to db test >db.createCollection("mycollection") { "ok" : 1 } >show collections mycollection system.indexes >db.createCollection("mycol", { capped : true, autoIndexId : true, size : 6142800, max : 10000 } ) { "ok" : 1 } >db.agiledatascience.insert({"name" : "demoname"}) >show collections mycol mycollection system.indexes demoname