Takes a list that is composed of other lists and matrixes and prints it in a visually readable format.
# S3 method for char.list
print(x, …, hsep = c("|"), vsep = c("-"), csep = c("+"), print.it = TRUE,
rowname.halign = c("left", "centre", "right"),
rowname.valign = c("top", "centre", "bottom"),
colname.halign = c("centre", "left", "right"),
colname.valign = c("centre", "top", "bottom"),
text.halign = c("right", "centre", "left"),
text.valign = c("top", "centre", "bottom"),
rowname.width, rowname.height,
min.colwidth = .Options$digits, max.rowheight = NULL,
abbreviate.dimnames = TRUE, page.width = .Options$width,
colname.width, colname.height, prefix.width,
superprefix.width = prefix.width)
list object to be printed
place for extra arguments to reside.
character used to separate horizontal fields
character used to separate veritcal feilds
character used where horizontal and veritcal separators meet.
should the value be printed to the console or returned as a string.
horizontal justification of row names.
verical justification of row names.
horizontal justification of column names.
verical justification of column names.
horizontal justification of cell text.
vertical justification of cell text.
minimum width of row name strings.
minimum height of row name strings.
minimum column width.
maximum row height.
should the row and column names be abbreviated.
width of the page being printed on.
minimum width of the column names.
minimum height of the column names
maximum width of the rowname columns
maximum width of the super rowname columns
String that formated table of the list object.