Nothing
#' @title polaroid
#'
#' @description run polaroid shiny application in appDir
#' @seealso https://github.com/jhk0530/polaroid
#'
#' @examples if(interactive()){ polaroid() }
#'
#' @import shiny
#' @return None
#'
#' @export
#'
polaroid <- function() {
appDir <- system.file("polaroid", package = "polaroid")
if (appDir == "") {
stop(
"Could not find Directory, Try re-install",
call. = FALSE
)
}
runApp(
appDir,
launch.browser = TRUE,
display.mode = "normal"
)
}
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.