R/S3-print.R

Defines functions print.tfam print.tfa

#' @method print tfa
#' @export
print.tfa <- function(x,...){
    attr(x, "class")<-NULL
    print(x)
}

#' @method print tfam
#' @export
print.tfam <- function(x,...){
    attr(x,"class")<-NULL
    attr(x,"layout")<-NULL
    print(x)
}

Try the popdemo package in your browser

Any scripts or data that you put into this service are public.

popdemo documentation built on Nov. 16, 2021, 5:06 p.m.