Nothing
#' Disconnect SAS session
#'
#' @description
#' Disconnects from the current SAS session.
#'
#' @return No return value.
#'
#' @export
#'
#' @family session management functions
#' @examplesIf interactive()
#' sas_connect()
#'
#' sas_disconnect()
sas_disconnect <- function() {
if (!valid_session()) {
return(invisible())
}
reticulate::py_capture_output(
.pkgenv$session$endsas()
)
cli::cli_alert_success("SAS connection terminated.")
invisible()
}
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.