The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
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[@]metanet.ch.
Andromeda is part of HADES.
AsynchroNous Disk-based Representation of MassivE DAta (ANDROMEDA): An R package for storing large data objects. Andromeda allow storing data objects on a local drive, while still making it possible to manipulate the data in an efficient manner.
library(Andromeda)
<- andromeda()
bigData
# Add some 'big' data:
$cars <- cars
bigData
# Manipulate using dplyr:
$cars %>% filter(speed > 10) %>% count() %>% collect()
bigData# # A tibble: 1 x 1
# n
# <int>
# 1 41
saveAndromeda(bigData, "bigData.zip")
close(bigData)
The Andromeda package is an R package wrapped around RSQLite.
Running the package requires R.
To install the latest development version, install from GitHub:
install.packages("devtools")
::install_github("ohdsi/Andromeda") devtools
Documentation can be found on the package website.
Read here how you can contribute to this package.
Andromeda is licensed under Apache License 2.0
Andromeda is being developed in R Studio.
Beta. Use at your own risk.
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.