print.predict.stratafit {sptotal} | R Documentation |
Prints a short summary for the predict.stratafit()
function.
Description
This function uses the object that is output from predict.stratafit()
of class predict.stratafit
..
Usage
## S3 method for class 'predict.stratafit'
print(x, digits = max(3L, getOption("digits") - 3L), ...)
Arguments
x |
is a prediction object generated from |
digits |
is the number of digits to be displayed in the model output |
... |
further arguments passed to or from other methods. |
Value
a list with
a table of predictions, standard errors, and confidence intervals for each stratum and for the total.
Examples
data(exampledataset) ## load a toy data set
exampledataset$strata <- c(rep("A", 19), rep("B", 21))
strataobj <- stratafit(formula = counts ~ pred1 + pred2,
data = exampledataset, stratacol = "strata",
xcoordcol = 'xcoords', ycoordcol = 'ycoords', areacol = 'areavar')
predict(strataobj)
[Package sptotal version 1.0.1 Index]