INLA workshop 1

Plot markdown table with fixed effect parameters

model$summary.fixed %>%
  select(1, lcl = 3, ucl = 5) %>%
  kable(caption = "model parameters", digits = 5)

Create table with fixed effects estimates from three models

model$summary.fixed %>%
  select(mean = 1) %>%
  rownames_to_column("parameter") %>%
  bind_cols(
    model_std$summary.fixed %>%
      select(mean_std = 1),
    model_liter$summary.fixed %>%
      select(mean_liter = 1)
  ) %>%
  kable(
    caption = "model parameters for different scaling", 
    digits = 5
  )

Model with only fixed effects

Model with random intercepts

Model with first order random walk

Select a repo