From 655405c4fec0e51c04cfe075a4f71e687b9d0281 Mon Sep 17 00:00:00 2001 From: Anrijs Abele Date: Sun, 22 Sep 2024 15:19:35 +0100 Subject: [PATCH 1/2] Changed the description to match the function --- R/shiny_modelviewer.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/shiny_modelviewer.R b/R/shiny_modelviewer.R index 1bb6a9e..13c23b8 100644 --- a/R/shiny_modelviewer.R +++ b/R/shiny_modelviewer.R @@ -295,7 +295,7 @@ model_viewer_shiny <- function(model_output, mesh, measurement_data, data_distri shiny::shinyApp(ui = ui, server = server) } -#' Mesh building shiny app. Creates and visualises a mesh from some spatial data. +#' Model viewing shiny app. Visualises INLA model output, plots the posterior distributions of model parameters and prediction statistics. #' #' @param model_output INLA model output #' @param mesh INLA mesh From acc4f86d3cf900c6bb2df0cdff7738bf9e054040 Mon Sep 17 00:00:00 2001 From: Anrijs Abele Date: Sun, 22 Sep 2024 15:20:57 +0100 Subject: [PATCH 2/2] Updated documentation --- man/model_viewer.Rd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/model_viewer.Rd b/man/model_viewer.Rd index 8ea96f7..ec809f2 100644 --- a/man/model_viewer.Rd +++ b/man/model_viewer.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/shiny_modelviewer.R \name{model_viewer} \alias{model_viewer} -\title{Mesh building shiny app. Creates and visualises a mesh from some spatial data.} +\title{Model viewing shiny app. Visualises INLA model output, plots the posterior distributions of model parameters and prediction statistics.} \usage{ model_viewer( model_output, @@ -24,5 +24,5 @@ model_viewer( shiny::app } \description{ -Mesh building shiny app. Creates and visualises a mesh from some spatial data. +Model viewing shiny app. Visualises INLA model output, plots the posterior distributions of model parameters and prediction statistics. }