-
Notifications
You must be signed in to change notification settings - Fork 34
/
README
60 lines (47 loc) · 1.68 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
RMongo
http://github.com/tc/RMongo
----
@tommychheng
This is a R package which lets you query MongoDB databases.
The sources for the java files are in ``src/r-mongo-scala``
Feel free to report bugs/feature requests on github.
Validate:
cd ..
R CMD check RMongo
Build:
R CMD build RMongo
Install:
R CMD install RMongo*.tar.gz
Publish to CRAN:
Visit http://cran.r-project.org/ and use the submission form.
CHANGELOG
---
0.1.0
Updated scala to 2.11.1 and mongo-java-driver to 2.13.0
0.0.25
Restored R 2.14 comp. Added replicaset support. thanks @benoitlouy
0.0.24
Recompiled to support >R 3. Updated mongo-java-driver to 2.11.2
0.0.23
Added aggregation framework support. thanks @jayjacobs
0.0.22
Fixed a bug in toCsvOutput which caused R data frames to be restricted to the fields of the first record found by a query. Thanks @tunnuz
Added dbRemoveQuery, dbGetDistinct methods. Thanks @liuq
---
# ---------------------------------------------------------------------------
# Copyright 2010, Tommy Chheng.
#
# RMongo is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RMongo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with RMongo. If not, see <http://www.gnu.org/licenses/>.
#
# ---------------------------------------------------------------------------