summary.ahm: Summary method for the fitted ahm object

Description Usage Arguments Examples

View source: R/ahm.R

Description

Summary method for the fitted ahm object

Usage

1
2
## S3 method for class 'ahm'
summary(object, ...)

Arguments

object

fitted ahm object

...

not used

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data("pringles_fat")
data_fat = pringles_fat
h_tmp = 1.3
x = data_fat[,c("c1","c2","c3","x11","x12","x21","x22")]
y = data_fat[,1]
out = ahm (y, x, num_major = 3, dist_minor = c(2,2,1),
           type = "weak", alpha=0, lambda_seq=seq(0,5,0.01), nfold = NULL,
           mapping_type = c("power"), powerh = h_tmp,
           rep_gcv=100)
summary(out)

AHM documentation built on July 28, 2019, 9:02 a.m.