autoplot.saehb: Autoplot

View source: R/autoplot.R

autoplot.saehbR Documentation

Autoplot

Description

Autoplot

Usage

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

Arguments

object

HB model

...

other argument

Value

plot

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,
   plot = FALSE
)
autoplot(corn_model)


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