Learn R Programming

sptotal (version 1.0.1)

print.predict.stratafit: 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 predict.stratafit
print(x, digits = max(3L, getOption("digits") - 3L), ...)

Value

a list with

  • a table of predictions, standard errors, and confidence intervals for each stratum and for the total.

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.

Examples

Run this code
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)

Run the code above in your browser using DataLab