Nothing
#' @title View Data About a Response.
#'
#' @description This function uses the `View` function from Rstudio if available,
#' otherwise it uses the utils::View function.
#'
#' @param x An R object which can be coerced to a data frame with non-zero numbers of rows and columns.
#' @param title Title for the viewer window.
#'
#' @return NULL.
#'
response_view <- function(x, title){
get("View", envir = as.environment("package:utils"))(x, title)
}
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.