R/print.probetable.R

Defines functions print.probetable

Documented in print.probetable

print.probetable = function(x, maxrows = 3, ...) {
  nr = nrow(x)
  np = min(nr, maxrows)
  cat("Object of class", class(x), "with", nr, "rows and", ncol(x), "columns.\n")
  if(nr>maxrows) cat("First", np, "rows are:\n")
  print.data.frame(x[seq_len(np), ])
}

Try the AnnotationDbi package in your browser

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

AnnotationDbi documentation built on Nov. 8, 2020, 4:50 p.m.