An open API service indexing awesome lists of open source software.

https://github.com/cfhammill/rbrainbrowser

An R interface to brainbrowser
https://github.com/cfhammill/rbrainbrowser

Last synced: 3 months ago
JSON representation

An R interface to brainbrowser

Awesome Lists containing this project

README

          

---
title: rbrainbrowser
author: Chris Hammill
date: March 09, 2018
output: md_document
---

## RBrainBrowser

An R interface to the [brainbrowser](https://github.com/aces/brainbrowser) javascript library.

Example:

```{r, eval = FALSE}
devtools::install_github("cfhammill/rbrainbrowser")
```

```{r}
library(rbrainbrowser)
library(jsonlite)
```

```{r, eval = FALSE}
obj_file <-
fromJSON(
gzcon(
url("https://github.com/aces/brainbrowser/raw/master/examples/models/dbs-vat.json.gz"))
, simplifyDataFrame = FALSE)

brainbrowser(obj_file)
```