The package SushiShinyPlot provides pre-built Shiny Apps for the most common plots based on ggplot2 and plotly.
The current version contains the following functions:
install.packages("plotly")
install.packages("shiny")
install.packages("devtools")
devtools::install_github("SushiLab/SushiShinyPlot")
To see the preferable citation of the package, type:
citation("SushiShinyPlot")
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.