R/print.tabelaBR.R

Defines functions print.tabelaBR

Documented in print.tabelaBR

#'@title Print for \code{tabelaBR} objects
#'@description Print objects with class \emph{tabelaBR}.
#'@usage \method{print}{tabelaBR}(x,...)
#'@param x An object with class \emph{tabelaBR}.
#'@param ... further arguments passed to or from other methods.
#'@seealso \code{\link{previousData}}, \code{\link{currentData}}
#'@examples
#'tabela = previousData(2019)
#'print(tabela)
#'@export
print.tabelaBR  = function(x,...){
  class(x) = "data.frame"

  cat("----------------------BRAZILIAN SOCCER CHAMPIONSHIP----------------------\n")
  print(x)
  cat("-------------------------------------------------------------------------")
}

Try the qqr package in your browser

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

qqr documentation built on Oct. 23, 2020, 7:17 p.m.