Nothing
#' Print class wm
#'
#' This is an S3 print function that Prints only the first 4 elements of
#' wm class objects.
#'
#' @param x Print object.
#' @param ... Other parameters associated with the \code{print()} function.
#' @returns A object containing only the first four items.
#' @keywords internal
#' @export
#' @examples
#' numbers<- 1:10
#' class(numbers)<-"wm"
#' numbers
#'
print.wm <- function(x,...) {
print(x[c(1:4)])} # define a new print function for the cm class
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.