Nothing
#' Autocompletion for Spectra Objects
#'
#' Command line completion for Spectra objects.
#'
#' @param x The \code{Spectra} object.
#' @param pattern String. The pattern to search for.
#' @return String. A vector of element names.
#' @export
#' @importFrom utils .DollarNames
#' @noRd
#' @keywords internal
#'
.DollarNames.Spectra <- function(x, pattern = "") {
grep(pattern, names(x), value = TRUE)
}
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.