The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
The goal of mongopipe is to have a simple translator for R code into json based queries for Mongodb.
You can install the development version of mongopipe on gitlab with:
::install_gitlab("illoRocks/mongopipe") remotes
library(mongopipe)
library(mongolite)
library(nycflights13)
<- mongo("test_flights", verbose = FALSE)
m_flights <- mongo("test_airports", verbose = FALSE)
m_airports
if(!m_flights$count())
$insert(flights)
m_flights
if(!m_airports$count())
$insert(airports)
m_airports
<- mongopipe() %>%
result match(faa="ABQ") %>%
lookup(from = "test_flights", local_field = "faa", foreign_field = "dest") %>%
unwind(field = "test_flights") %>%
project(air_time="$test_flights.air_time", dep_delay="$test_flights.dep_delay", origin="$test_flights.origin") %>%
$aggregate()
m_airports
head(result)
#> _id air_time dep_delay origin
#> 1 5fe23ddb5a72ab3dc0076731 230 -6 JFK
#> 2 5fe23ddb5a72ab3dc0076731 238 9 JFK
#> 3 5fe23ddb5a72ab3dc0076731 251 -6 JFK
#> 4 5fe23ddb5a72ab3dc0076731 257 16 JFK
#> 5 5fe23ddb5a72ab3dc0076731 242 0 JFK
#> 6 5fe23ddb5a72ab3dc0076731 240 -2 JFK
<- mongopipe() %>%
pipe match(faa="ABQ") %>%
lookup(from = "test_flights", local_field = "faa", foreign_field = "dest") %>%
unwind(field = "test_flights") %>%
project(air_time="$test_flights.air_time", dep_delay="$test_flights.dep_delay", origin="$test_flights.origin")
print(pipe, pretty = 4)
#> [
#> {
#> "$match": {
#> "faa": "ABQ"
#> }
#> },
#> {
#> "$lookup": {
#> "from": "test_flights",
#> "localField": "faa",
#> "foreignField": "dest",
#> "as": "test_flights"
#> }
#> },
#> {
#> "$unwind": "$test_flights"
#> },
#> {
#> "$project": {
#> "air_time": "$test_flights.air_time",
#> "dep_delay": "$test_flights.dep_delay",
#> "origin": "$test_flights.origin"
#> }
#> }
#> ]
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.