Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/19 operator r name change #45

Closed
wants to merge 9 commits into from
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
^LICENSE\.md$
^deploy\.sh$
^\..*$
^\.Rproj\.user$
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: MpiIsoApp
Title: Shiny App for Isotopes data base
Version: 22.06.2
Version: 22.07.3
Author: INWT Statistics GmbH
Maintainer: INWT <[email protected]>
Description: Shiny App contains: a data explorer tab, an interactive map and a static map, which should present model results.
Expand Down
3 changes: 2 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export(savedMapsTab)
export(savedMapsTabUI)
export(setSkin)
export(startApplication)
import(shiny, except = renderDataTable)
import(shiny, except = c(renderDataTable, dataTableOutput))
importFrom(DT,dataTableOutput)
importFrom(DT,datatable)
importFrom(DT,renderDataTable)
importFrom(MASS,kde2d)
Expand Down
4 changes: 2 additions & 2 deletions R/00-Namespace.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#' @rawNamespace import(shiny, except = renderDataTable)
#' @rawNamespace import(shiny, except = c(renderDataTable, dataTableOutput))
#' @importFrom animation saveGIF
#' @importFrom coda raftery.diag gelman.diag geweke.diag heidel.diag mcmc
#' @importFrom colourpicker colourInput
#' @importFrom rcarbon calibrate sampleDates
#' @importFrom DT datatable renderDataTable
#' @importFrom DT datatable renderDataTable dataTableOutput
#' @importFrom geometry convhulln inhulln
#' @importFrom ggplot2 ggplot theme theme_light coord_cartesian geom_point theme_light theme labs
#' geom_errorbar aes_ element_blank element_text position_dodge aes geom_boxplot xlab
Expand Down
Loading