README.md

SushiShinyPlot: Package for plotting through the construction of Shiny Apps

The package SushiShinyPlot provides pre-built Shiny Apps for the most common plots based on ggplot2 and plotly.

Content

The current version contains the following functions:

Installation of the package

install.packages("plotly")  
install.packages("shiny")
install.packages("devtools")
devtools::install_github("SushiLab/SushiShinyPlot")

Citation

To see the preferable citation of the package, type:

citation("SushiShinyPlot")

Usage

# Load some data
install.packages("vegan")
library(vegan)
data(mite)
data(mite.env)
newdat<-cbind(mite[,order(colSums(mite),decreasing = T)[1:5]],mite.env)

# Make a Scatterplot Shiny App
library(SushiShinyPlot)
shinyScatter(newdat)


SushiLab/SushiShinyPlot documentation built on May 15, 2019, 12:53 p.m.