getSummary {StratSel} | R Documentation |
getSummary Method for extending mtable()
Description
This function extends the mtable() to report strategic selection models (StratSel
). Together with setStratSelDefault
and the mtable
command from the memisc
package users can create multi-model tables and export them to LaTeX.
Usage
## S3 method for class 'StratSel'
getSummary(obj, alpha = 0.05, ...)
Arguments
obj |
An object of class |
alpha |
Significance level. |
... |
additional arguments |
Value
Returns a list of objects to be fed to mtable
. Do not use this command directly. The command mtable
will automatically call this function for an object of the StratSel
class.
Author(s)
Lucas Leemann lleemann@gmail.com
References
Elff, Martin. (2013). memisc: Tools for Management of Survey Data, Graphics, Programming, Statistics, and Simulation R package version 0.96-7.
See Also
Examples
data(data.fake)
out1 <- StratSel(Y ~ var.A | var.D | var.E , data=data.fake, corr=FALSE)
out2 <- StratSel(Y ~ var.A | var.C | var.E, data=data.fake, corr=FALSE)
mtable(out1,out2)
[Package StratSel version 1.3 Index]