Nothing
#' fileInputFunc
#'
#' If input file is empty, use sample file
#'
#' @note \code{fileInputFunc}
#' @return If no file is uploaded, use sample file
#' @param input, enter correct files
#' @param sampleFile, sampleFile
#'
#' @examples
#' x<- fileInputFunc()
#'
#'
#' @export
#
fileInputFunc <- function(input = NULL, sampleFile = NULL) {
if (is.null(sampleFile)) return(NULL)
if(is.null(input)) {
sampleFile
}
else {
input
}
}
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.