Extract.pim.summary | R Documentation |
This method allows to extract data directly from a pim.summary
object. It's exactly the same as extracting from as.matrix(thesummary)
.
## S4 method for signature 'pim.summary'
x[i, j, drop = TRUE]
x |
a |
i |
indices specifying row to extract or replace. They are used in the same way as you woul after transforming |
j |
see i, but for columns |
drop |
see |
the selected matrix
data(FEVData)
Model <- pim(FEV~ Smoke*Sex , data=FEVData)
thesummary <- summary(Model)
thesummary[,2:3]
thesummary["Sex"]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.