When using rmongodb, unable to see collections in mongoDB
I am having the same issue as in this thread: Unable to see collections in mongo DB when connected through R I am successfully connected to mongoDB. > mongo.is.connected(mongo) [1] TRUE If I run the following code, I see the correct db. > mongo.get.databases(mongo) [1] "FF" > But, when I try to view the collections, it returns character(0) > mongo.get.database.collections(mongo , db = "FF") character(0) > If I connect from the shell I can see all the collections, so I know they exist. > use FF switched to db FF > show collections kelp_classifications kelp_groups kelp_subjects kelp_users Update