R/LMBoard.R

Defines functions LMBoard

Documented in LMBoard

#' LMBoard shiny app
#'
#' Launches the LMBoard shiny app, user can add remove points and visualize changes in the estimates and residual plots
#'
#'
#'
#'
#' @details
#'
#'
#' Full help is available from within the shiny app.
#'
#' @return None
#'
#'
#' @author Francesco Pauli, \email{francesco.pauli@@deams.units.it}
#'
#' @examples
#' ## Not run:
#' if (interactive()){
#'  LMBoard()
#'  }
#' ## End(Not run)
#' @import shiny
#'
#' @export


LMBoard=function(){
  appDir <- system.file("LMBoardApp.r", package = "lmviz")
  .GlobalEnv$".wd"=getwd()
  shiny::runApp(appDir)
}

Try the lmviz package in your browser

Any scripts or data that you put into this service are public.

lmviz documentation built on Aug. 25, 2020, 1:06 a.m.