]> git.donarmstrong.com Git - xtable.git/blobdiff - pkg/man/xtable.Rd
Applied patches supplied by Martin Gubri for spdep
[xtable.git] / pkg / man / xtable.Rd
index 52d91b9b6e0aa5b2a389dafc04b9b48f6f8aea08..29efa7c0f9d22bc1046b5647b3677784930b8758 100644 (file)
@@ -7,6 +7,7 @@
 \alias{xtable.glm}
 \alias{xtable.lm}
 \alias{xtable.matrix}
+\alias{xtable.xtableMatharray}
 \alias{xtable.prcomp}
 \alias{xtable.coxph}
 \alias{xtable.summary.aov}
 \alias{xtable.ts}
 \alias{xtable.table}
 \alias{xtable.zoo}
+\alias{xtable.sarlm}
+\alias{xtable.summary.sarlm}
+\alias{xtable.gmsar}
+\alias{xtable.summary.gmsar}
+\alias{xtable.stsls}
+\alias{xtable.summary.stsls}
+\alias{xtable.sarlm.pred}
+\alias{xtable.lagImpact}
+\alias{xtable.splm}
+\alias{xtable.summary.splm}
+\alias{xtable.sphet}
+\alias{xtable.summary.sphet}
+\alias{xtable.spautolm}
+\alias{xtable.summary.spautolm}
+
+
 \title{Create Export Tables}
 \description{
-  Function converting an R object to an \code{xtable} object, which can
+  Convert an \R object to an \code{xtable} object, which can
   then be printed as a LaTeX or HTML table.
 }
 \usage{
 xtable(x, caption = NULL, label = NULL, align = NULL, digits = NULL,
-       display = NULL, ...)
+       display = NULL, auto = FALSE, ...)
 }
 \arguments{
-  \item{x}{An R object of class found among \code{methods(xtable)}.  See
+  \item{x}{An \R object of class found among \code{methods(xtable)}.  See
     below on how to write additional method functions for \code{xtable}.}
   \item{caption}{Character vector of length 1 or 2 containing the
-    table's caption or title.  If length 2, the second item is the
+    table's caption or title.  If length is 2, the second item is the
     "short caption" used when LaTeX generates a "List of Tables". Set to
     \code{NULL} to suppress the caption.  Default value is \code{NULL}. }
   \item{label}{Character vector of length 1 containing the LaTeX label
     or HTML anchor. Set to \code{NULL} to suppress the label.  Default
     value is \code{NULL}. }
   \item{align}{Character vector of length equal to the number of columns
-    of the resulting table indicating the alignment of the corresponding
+    of the resulting table, indicating the alignment of the corresponding
     columns.  Also, \code{"|"} may be used to produce vertical lines
     between columns in LaTeX tables, but these are effectively ignored
     when considering the required length of the supplied vector.  If a
@@ -47,7 +64,7 @@ xtable(x, caption = NULL, label = NULL, align = NULL, digits = NULL,
     one greater than \code{ncol(x)} if \code{x} is a
     \code{data.frame}. Use \code{"l"}, \code{"r"}, and \code{"c"} to
     denote left, right, and center alignment, respectively.  Use
-    \code{"p\{3cm\}"} etc for a LaTeX column of the specified width. For
+    \code{"p{3cm}"} etc. for a LaTeX column of the specified width. For
     HTML output the \code{"p"} alignment is interpreted as \code{"l"},
     ignoring the width request. Default depends on the class of
     \code{x}. }
@@ -55,17 +72,17 @@ xtable(x, caption = NULL, label = NULL, align = NULL, digits = NULL,
     Numeric vector of length equal to one (in which case it will be
     replicated as necessary) or to the number of columns of the
     resulting table \bold{or} matrix of the same size as the resulting
-    table indicating the number of digits to display in the
+    table, indicating the number of digits to display in the
     corresponding columns. Since the row names are printed in the first
     column, the length of the vector \code{digits} or the number of
     columns of the matrix \code{digits} is one greater than
     \code{ncol(x)} if \code{x} is a \code{data.frame}. Default depends
-    of class of \code{x}. If values of \code{digits} are negative, the
+    on the class of \code{x}. If values of \code{digits} are negative, the
     corresponding values of \code{x} are displayed in scientific format
     with \code{abs(digits)} digits.}
   \item{display}{
     Character vector of length equal to the number of columns of the
-    resulting table indicating the format for the corresponding columns.
+    resulting table, indicating the format for the corresponding columns.
     Since the row names are printed in the first column, the length of
     \code{display} is one greater than \code{ncol(x)} if \code{x} is a
     \code{data.frame}.  These values are passed to the \code{formatC}
@@ -79,43 +96,52 @@ xtable(x, caption = NULL, label = NULL, align = NULL, digits = NULL,
     but \code{digits} as number of \emph{significant} digits.  Note that
     this can lead to quite long result strings.  Default depends on the
     class of \code{x}.}
+  \item{auto}{
+    Logical, indicating whether to apply automatic format when no value
+    is passed to \code{align}, \code{digits}, or \code{display}. This
+    \sQuote{autoformat} (based on \code{xalign}, \code{xdigits}, and
+    \code{xdisplay}) can be useful to quickly format a typical
+    \code{matrix} or \code{data.frame}. Default value is \code{FALSE}.}
   \item{...}{Additional arguments.  (Currently ignored.)}
 }
 \details{
-  
+
   This function extracts tabular information from \code{x} and returns
   an object of class \code{"xtable"}.  The nature of the table generated
   depends on the class of \code{x}.  For example, \code{aov} objects
   produce ANOVA tables while \code{data.frame} objects produce a table
-  of the entire data.frame.  One can optionally provide a caption
-  (called a title in HTML) or label (called an anchor in HTML), as well
+  of the entire data frame.  One can optionally provide a caption
+  or label (called an anchor in HTML), as well
   as formatting specifications.  Default values for \code{align},
   \code{digits}, and \code{display} are class dependent.
 
   The available method functions for \code{xtable} are given by
   \code{methods(xtable)}.  Users can extend the list of available
   classes by writing methods for the generic function \code{xtable}.
-  These methods functions should have \code{x} as their first argument
+  These methods functions should have \code{x} as their first argument,
   with additional arguments to specify \code{caption}, \code{label},
   \code{align}, \code{digits}, and \code{display}.  Optionally, other
-  arguments may be present to specify how the object \code{x} should be
+  arguments may be passed to specify how the object \code{x} should be
   manipulated.  All method functions should return an object whose class
-  if given by \code{c("xtable","data.frame")}.  The resulting object can
+  is \code{c("xtable","data.frame")}.  The resulting object can
   have attributes \code{caption} and \code{label}, but must have
-  attributes \code{align}, \code{digits}, and \code{display}.  It is
-  strongly recommened that you set these attributes through the provided
-  replacement functions as they perform validity checks.
-  }
-  \value{An object of class \code{"xtable"} which inherits the
-  \code{data.frame} class and contains several additional attributes
-  specifying the table formatting options.  
+  attributes \code{align}, \code{digits}, and \code{display}.
 }
-\author{David Dahl \email{dahl@stat.tamu.edu} with contributions and
+\value{
+  For most \code{xtable} methods, an object of class \code{"xtable"}
+  which inherits the \code{data.frame} class and contains several
+  additional attributes specifying the table formatting options.
+
+}
+\author{David Dahl \email{dahl@stat.byu.edu} with contributions and
   suggestions from many others (see source code).
 }
-\seealso{\code{\link{print.xtable}}, \code{\link{caption}},
+\seealso{
+  \code{\link{print.xtable}}, \code{\link{caption}},
   \code{\link{label}}, \code{\link{align}}, \code{\link{digits}},
-  \code{\link{display}}, \code{\link{formatC}}, \code{\link{methods}}
+  \code{\link{display}}, \code{\link{autoformat}}, \code{\link{xalign}},
+  \code{\link{xdigits}}, \code{\link{xdisplay}},
+  \code{\link{xtableMatharray}}, \code{\link{xtableList}}
 }
 \examples{
 
@@ -124,19 +150,21 @@ data(tli)
 
 ## Demonstrate data.frame
 tli.table <- xtable(tli[1:20, ])
-digits(tli.table)[c(2, 6)] <- 0
 print(tli.table)
 print(tli.table, type = "html")
+xtable(mtcars)
+xtable(mtcars, auto = TRUE)
 
 ## Demonstrate data.frame with different digits in cells
 tli.table <- xtable(tli[1:20, ])
-digits(tli.table) <- matrix( 0:4, nrow = 20, ncol = ncol(tli)+1 )
+display(tli.table)[c(2,6)] <- "f"
+digits(tli.table) <- matrix(0:4, nrow = 20, ncol = ncol(tli)+1)
 print(tli.table)
 print(tli.table, type = "html")
 
 ## Demonstrate matrix
 design.matrix <- model.matrix(~ sex*grade, data = tli[1:20, ])
-design.table <- xtable(design.matrix)
+design.table <- xtable(design.matrix, auto = TRUE)
 print(design.table)
 print(design.table, type = "html")
 
@@ -218,7 +246,7 @@ print(fm1.table, format.args = list(big.mark = "'", decimal.mark = ","))
 
 ## Demonstration of "short caption" support.
 fm1sc <- aov(tlimth ~ sex + ethnicty + grade, data = tli)
-fm1sc.table <- xtable(fm1sc, 
+fm1sc.table <- xtable(fm1sc,
   caption = c("ANOVA Model with Predictors Sex, Ethnicity, and Grade",
     "ANOVA: Sex, Ethnicity, Grade"))
 print(fm1sc.table)
@@ -228,14 +256,14 @@ print(fm1sc.table)
 x <- matrix(rnorm(1000), ncol = 10)
 x.big <- xtable(x, label = 'tabbig',
                 caption = 'Example of longtable spanning several pages')
-print(x.big, tabular.environment = 'longtable', floating = FALSE) 
+print(x.big, tabular.environment = 'longtable', floating = FALSE)
 x <- x[1:30, ]
 x.small <- xtable(x, label = 'tabsmall', caption = 'regular table env')
-print(x.small)  # default, no longtable 
+print(x.small)  # default, no longtable
 
 ## Demonstration of sidewaystable support.
 ## Remember to insert \usepackage{rotating} on your LaTeX preamble
-print(x.small, floating.environment = 'sidewaystable') 
+print(x.small, floating.environment = 'sidewaystable')
 
 if(require(stats, quietly = TRUE)) {
   ## Demonstrate prcomp
@@ -251,7 +279,7 @@ if(require(stats, quietly = TRUE)) {
 #  print(xtable(pr2))
 }
 
-## Demonstrate include.rownames, include.colnames, 
+## Demonstrate include.rownames, include.colnames,
 ## only.contents and add.to.row arguments
 set.seed(2345)
 res <- matrix(sample(0:9, size = 6*9, replace = TRUE), ncol = 6, nrow = 9)
@@ -266,7 +294,7 @@ print(xres, add.to.row = addtorow, include.rownames = FALSE,
       include.colnames = TRUE, only.contents = TRUE,
       hline.after = c(0, 0, 9, 9))
 
-## Demonstrate include.rownames, include.colnames, 
+## Demonstrate include.rownames, include.colnames,
 ## only.contents and add.to.row arguments in Rweave files
 
 \dontrun{
@@ -275,7 +303,7 @@ print(xres, add.to.row = addtorow, include.rownames = FALSE,
  \begin{longtable}{
  <<results = tex, fig = FALSE>>=
  cat(paste(c('c', rep('cc', 34/2-1), 'c'), collapse = '@{\\hspace{2pt}}'))
- @ 
+ @
  }
  \hline
  \endhead
@@ -315,9 +343,9 @@ print(tli.table,
 print(tli.table, booktabs = TRUE)
 print(tli.table, booktabs = TRUE, hline.after = c(-1,0))
 print(tli.table, booktabs = TRUE, hline.after = NULL)
-print(tli.table, booktabs = TRUE, 
+print(tli.table, booktabs = TRUE,
   add.to.row = list(pos = list(2), command = c("\\vspace{2mm} \n")))
-print(tli.table, booktabs = TRUE, add.to.row = list(pos = list(2), 
+print(tli.table, booktabs = TRUE, add.to.row = list(pos = list(2),
   command = c("youhou\n")), tabular.environment = "longtable")
 
 \testonly{
@@ -378,7 +406,7 @@ print(tli.table, booktabs = TRUE, add.to.row = list(pos = list(2),
     print(temp.table, type = i, file = outFileName,
           append = TRUE, caption.placement = "bottom", table.placement = "htb")
   }
-} 
+}
 
 }
 \keyword{file}