app_RLum function

Run Luminescence shiny apps

Run Luminescence shiny apps

A wrapper for shiny::runApp to start interactive shiny apps for the R package Luminescence.

The RLumShiny package provides a single function from which all shiny apps can be started: app_RLum(). It essentially only takes one argument, which is a unique keyword specifying which application to start. See the table below for a list of available shiny apps and which keywords to use. If no keyword is used a dashboard will be started instead, from which an application can be started.

Application name:Keyword:Function:
Abanico PlotabanicoLuminescence::plot_AbanicoPlot
HistogramhistogramLuminescence::plot_Histogram
Kernel Density Estimate PlotKDELuminescence::plot_KDE
Radial PlotradialplotLuminescence::plot_RadialPlot
Dose Recovery TestdoserecoveryLuminescence::plot_DRTResults
Cosmic Dose RatecosmicdoseLuminescence::calc_CosmicDoseRate
CW Curve TransformationtransformCWLuminescence::convert_CW2pHMi , Luminescence::convert_CW2pLM , Luminescence::convert_CW2pLMi , Luminescence::convert_CW2pPMi
Filter CombinationsfilterLuminescence::plot_FilterCombinations
Fast RatiofastratioLuminescence::calc_FastRatio
Fading CorrectionfadingLuminescence::analyse_FadingMeasurement , Luminescence::calc_FadingCorr
Test Stimulation PowerteststimulationpowerLuminescence::plot_RLum
Scale Gamma Dose RatescalegammaLuminescence::scale_GammaDose
RCarb appRCarbRCarb::model_DoseRate

The app_RLum() function is just a wrapper for shiny::runApp . Via the ... argument further arguments can be directly passed to shiny::runApp . See ?shiny::runApp for further details on valid arguments.

app_RLum(app = NULL, ...)

Arguments

  • app: character (required ): name of the application to start. See details for a list of available apps.
  • ...: further arguments to pass to shiny::runApp

Examples

## Not run: # Dashboard app_RLum() # Plotting apps app_RLum("abanico") app_RLum("histogram") app_RLum("KDE") app_RLum("radialplot") app_RLum("doserecovery") # Further apps app_RLum("cosmicdose") app_RLum("transformCW") app_RLum("filter") app_RLum("fastratio") app_RLum("fading") app_RLum("surfaceexposure") app_RLum("teststimulationpower") app_RLum("scalegamma") app_RLum("RCarb") ## End(Not run)

See Also

shiny::runApp

Author(s)

Christoph Burow, University of Cologne (Germany)

  • Maintainer: Christoph Burow
  • License: GPL-3
  • Last published: 2025-03-23