summary.saehb: Summary sae HB model

View source: R/summary.R

summary.saehbR Documentation

Summary sae HB model

Description

Summary sae HB model

Usage

## S3 method for class 'saehb'
summary(object, ...)

Arguments

object

sae HB model

...

further arguments passed to or from other methods.

Value

The function return a data.frame of beta coefficient from HB model.

Examples

library(dplyr)

Xarea <- cornsoybeanmeans %>%
   dplyr::select(
      County = CountyIndex,
      CornPix = MeanCornPixPerSeg,
      SoyBeansPix = MeanSoyBeansPixPerSeg
   )

corn_model <- hb_unit(
   CornHec ~ SoyBeansPix + CornPix,
   data_unit = cornsoybean,
   data_area = Xarea,
   domain = "County",
   iter.update = 20
)

summary(corn_model)


saeHB.unit documentation built on Oct. 15, 2023, 9:06 a.m.