Function to create a default input list for the ETAS Hawkes temporal model where no catalogue is specified in the input file
Source:R/setupInlabruInputs.R
create_input_list_temporal_noCatalogue.Rd
Function to create a default input list for the ETAS Hawkes temporal model where no catalogue is specified in the input file
Examples
create_input_list_temporal_noCatalogue(
system.file("extdata", "user_input_synthetic_noCatalogue.txt", package = "ETAS.inlabru")
)
#> $catalog
#> NULL
#>
#> $catalog.bru
#> NULL
#>
#> $time.int
#> NULL
#>
#> $T12
#> [1] "T1" " T2"
#>
#> $lat.int
#> [1] -90 90
#>
#> $lon.int
#> [1] -180 180
#>
#> $M0
#> NULL
#>
#> $mu.init
#> [1] 0.25
#>
#> $K.init
#> [1] 0.3
#>
#> $alpha.init
#> [1] 1.6
#>
#> $c.init
#> [1] 0.2
#>
#> $p.init
#> [1] 1.1
#>
#> $a_mu
#> [1] 0.5
#>
#> $b_mu
#> [1] 0.5
#>
#> $a_K
#> [1] -1
#>
#> $b_K
#> [1] 0.5
#>
#> $a_alpha
#> [1] 0
#>
#> $b_alpha
#> [1] 10
#>
#> $a_c
#> [1] 0
#>
#> $b_c
#> [1] 1
#>
#> $a_p
#> [1] 1
#>
#> $b_p
#> [1] 2
#>
#> $max_iter
#> [1] 100
#>
#> $max_step
#> NULL
#>
#> $link.functions
#> $link.functions$mu
#> function (x)
#> gamma_t(x, a_mu, b_mu)
#> <bytecode: 0x5633a95fd6b0>
#> <environment: 0x5633a95fc0d0>
#>
#> $link.functions$K
#> function (x)
#> loggaus_t(x, a_K, b_K)
#> <bytecode: 0x5633a95fd3d8>
#> <environment: 0x5633a95fc0d0>
#>
#> $link.functions$alpha
#> function (x)
#> unif_t(x, a_alpha, b_alpha)
#> <bytecode: 0x5633a95fd100>
#> <environment: 0x5633a95fc0d0>
#>
#> $link.functions$c_
#> function (x)
#> unif_t(x, a_c, b_c)
#> <bytecode: 0x5633a95fce28>
#> <environment: 0x5633a95fc0d0>
#>
#> $link.functions$p
#> function (x)
#> unif_t(x, a_p, b_p)
#> <bytecode: 0x5633a95fcb50>
#> <environment: 0x5633a95fc0d0>
#>
#>
#> $bru.opt.list
#> $bru.opt.list$bru_verbose
#> [1] 3
#>
#> $bru.opt.list$bru_max_iter
#> [1] 100
#>
#> $bru.opt.list$num.threads
#> NULL
#>
#> $bru.opt.list$bru_initial
#> $bru.opt.list$bru_initial$th.mu
#> [1] -0.2978078
#>
#> $bru.opt.list$bru_initial$th.K
#> [1] -0.4079456
#>
#> $bru.opt.list$bru_initial$th.alpha
#> [1] -0.9944579
#>
#> $bru.opt.list$bru_initial$th.c
#> [1] -0.8416212
#>
#> $bru.opt.list$bru_initial$th.p
#> [1] -1.281552
#>
#>
#>
#> $coef.t
#> [1] 1
#>
#> $delta.t
#> [1] 0.1
#>
#> $Nmax
#> [1] 8
#>
#> $n.periods
#> [1] 120
#>
#> $period.length
#> [1] 1
#>
#> $start.date.fore
#> NULL
#>
#> $magnitude.update
#> [1] 5.5
#>
#> $output.name
#> [1] "report_ETAS"
#>