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

https://github.com/koderkow/b430-d3plot


https://github.com/koderkow/b430-d3plot

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
# fig.path = "man/figures/README-",
out.width = "100%"
)
```

# d3plot

- This is our groups final project for PBHL-B430 Advanced Computing
- The package gives the ability for users to make D3 plots
- There is a basic Shiny Gadget that lets users explore their data using the D3 plots

## Install

```{r, eval=FALSE}
devtools::install_github("KoderKow/B430-d3plot")
```

## Example

Loading `d3plot`:

```{r, message=FALSE}
library(d3plot)
```

### Scatter Plots

```{r, eval=FALSE}
d3_scatter(mtcars, mph, hp)
```

![Basic Interactive Scatter Plot](https://i.imgur.com/iTKEwp0.gif)