https://github.com/koderkow/b430-d3plot
https://github.com/koderkow/b430-d3plot
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/koderkow/b430-d3plot
- Owner: KoderKow
- Created: 2019-04-27T14:07:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-29T16:20:53.000Z (about 7 years ago)
- Last Synced: 2025-03-13T18:45:25.566Z (over 1 year ago)
- Language: R
- Size: 92.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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)
```
