RMongo icon indicating copy to clipboard operation
RMongo copied to clipboard

R client to interface with MongoDB

Results 28 RMongo issues
Sort by recently updated
recently updated
newest added

Am I right that RMongo currently doesn't support document updating? Do you plan to add that functionality? Thanks!

When I leave out the skip parameter, and set the limit parameter explicitly (which is typical R code), like this: ``` times

Is dbInsertDocument a simple wrapper of db.collection.insert() ? According to http://docs.mongodb.org/manual/reference/method/db.collection.insert/#db.collection.insert it should support batch sending from an array of document: [document1, document2, ..., documentN] This is important because R...

I've been told it's impossible by a vendor who manages my MongoDB remote server, but I was wondering if it's possible to use RMongo with SSL? Thanks!

Hi, I'm trying to read in R, in chunks of 50k rows at a time, a collection of about 300k rows. ``` dt

A collection in mongo containing special char as a value, such as \r\n ..., results in breaking the returned data frame. e.g. > db.test.find() --- in mongo { "_id" :...

Hi I like to use RMongo for easier querying but having problems with connecting to database on mongo version 2.6. The code i am to use to connect would be...

Here is my data test store in MongoDB ``` javascript { "_id" : ObjectId("52983ff67dbf497a8bb0192b"), "data" : [ { "LoadPct" : 10, "RECORD_SEQ" : 1 } ] } { "_id" :...

It appears the steps, mongoDbConnect -> dbAuthenticate -> dbAggregate limits the use of switching between databases after authentication. For instance, authenticating with "foo" database, then switching to "bar". ``` r...

Dear RMongo team, thanks a lot for creating this useful R package. We are currently trying to use RMongo in conjunction with our opm package for database I/O. In our...