print.predict.stratafit: Prints a short summary for the 'predict.stratafit()'...

View source: R/print.predict.stratafit.R

print.predict.stratafitR 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 predict.stratafit()

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)

sptotal documentation built on Dec. 12, 2022, 1:06 a.m.