Nothing
#' shineMe
#' @title shineMe
#' @description An R shiny app for shinyr UI.
#' @author Jayachandra N
#' @return shiny UI page
#' @export
#' @import shiny
#' @import shinydashboard
#' @import plotly
#' @examplesIf interactive()
#' shineMe()
shineMe <- function() {
shiny::runApp(system.file(package = "shinyr", "app"))
}
#' plotCor
#' @title Plot Cor
#' @description Plot correlation plot
#' @param cor_dat Corelation matrix
#' @param my_method method to plot, for example: circle
#' @importFrom corrplot corrplot
#' @return Corelation plot
#' @export
#' @author Jayachandra N
#' @examplesIf interactive()
#' cor_dat <- cor(mtcars)
#' plotCor(cor_dat, "circle")
plotCor <- function(cor_dat, my_method) {
corrplot::corrplot(cor_dat, method = my_method) # A single line function?
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.