我有一个Twitter数据 CSV 文件,我在R中使用read.table
读过,然后我对该数据执行了一些算法并将输出作为表格数据。我想将此表格数据插入mongodb
。任何人都可以帮忙吗?
表格数据如下所示:
pqr
V2 V1 V3 V4 polarity emotion
1 342521635332_318304224958367 FB 2013-03-15 6:43 PM positive <NA>
2 342521635332_325506614238815 FB 2013-03-08 8:23 PM neutral sad
3 342521635332_347654842010216 FB 2013-02-22 8:13 PM positive <NA>
4 342521635332_567940913224072 FB 2013-02-22 6:27 PM neutral <NA>
5 342521635332_318826431554118 FB 2013-02-22 2:22 PM positive joy
6 342521635332_215298638612191 FB 2013-02-20 8:09 PM negative angry
7 342521635332_407970722630311 FB 2013-02-15 8:48 PM neutral joy
mongo.insert(m,'abc.xyz',pqr)
当我执行mongo insert
时,数据会插入到mongodb
中,但数据在mongodb中显示如下。
db.xyz.find()
{ "_id" : ObjectId("5176273533da42cdbe49f2c5"), "V2" : [ 3, 5, 6, 9, 4, 2, 7, 1, 10, 8 ], "V1" : [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ], "V3" : [ 6, 5, 4, 4, 4, 3, 2, 1, 1, 1 ], "V4" : [ 5, 8, 7, 4, 1, 6, 10, 9, 3, 2 ], "polarity" : [ 3, 2, 3, 2, 3, 1, 2, 2, 3, 1 ], "emotion" : [ -2147483648, -2147483648, -2147483648, -2147483648, -2147483648, -2147483648, 1, -2147483648, -2147483648, -2147483648 ] }
我需要将数据插入mongodb,类似于表格数据。
答案 0 :(得分:1)
首先将数据帧转换为BSON -
b=mongo.bson.from.df(df)
然后
使用 -
加载mongo集合mongo.insert(mongo,ns,b)