powered by
This method allows to extract data directly from a pim.summary object. It's exactly the same as extracting from as.matrix(thesummary).
pim.summary
as.matrix(thesummary)
# S4 method for pim.summary [(x, i, j, drop = TRUE)
the selected matrix
a pim.summary object to extract information from.
indices specifying row to extract or replace. They are used in the same way as you woul after transforming x to a matrix.
x
see i, but for columns
see Extract
Extract
data(FEVData) Model <- pim(FEV~ Smoke*Sex , data=FEVData) thesummary <- summary(Model) thesummary[,2:3] thesummary["Sex"]
Run the code above in your browser using DataLab