[Yuima-commits] r808 - in pkg/yuimaGUI: . R man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Aug 9 22:08:29 CEST 2022


Author: phoenix844
Date: 2022-08-09 22:08:28 +0200 (Tue, 09 Aug 2022)
New Revision: 808

Modified:
   pkg/yuimaGUI/DESCRIPTION
   pkg/yuimaGUI/NAMESPACE
   pkg/yuimaGUI/R/sourceCodeYuimaGUI.R
   pkg/yuimaGUI/man/yuimaGUI.Rd
Log:
Fix CRAN version

Modified: pkg/yuimaGUI/DESCRIPTION
===================================================================
--- pkg/yuimaGUI/DESCRIPTION	2022-08-02 21:09:53 UTC (rev 807)
+++ pkg/yuimaGUI/DESCRIPTION	2022-08-09 20:08:28 UTC (rev 808)
@@ -1,10 +1,11 @@
-Package: yuimaGUI
-Type: Package
-Title: A Graphical User Interface for the 'yuima' Package
-Version: 1.3.0
-Author: YUIMA Project Team
-Maintainer: Emanuele Guidotti <emanuele.guidotti at hotmail.it>
-Description: Provides a graphical user interface for the 'yuima' package.
-License: GPL-2
-Depends: R(>= 3.0.0) 
-Imports: DT (>= 0.2), shinyjs, shiny, shinydashboard, shinyBS, yuima, quantmod, sde, ggplot2, plotly, ghyp
\ No newline at end of file
+Package: yuimaGUI
+Type: Package
+Title: A Graphical User Interface for the 'yuima' Package
+Version: 1.3.1
+Author: YUIMA Project Team
+Maintainer: Emanuele Guidotti <emanuele.guidotti at hotmail.it>
+Description: Provides a graphical user interface for the 'yuima' package.
+License: GPL-2
+Depends: R(>= 3.0.0) 
+Imports: DT (>= 0.2), shinyjs, shiny, shinydashboard, shinyBS, yuima, quantmod, sde, ggplot2, plotly, ghyp
+RoxygenNote: 7.2.0

Modified: pkg/yuimaGUI/NAMESPACE
===================================================================
--- pkg/yuimaGUI/NAMESPACE	2022-08-02 21:09:53 UTC (rev 807)
+++ pkg/yuimaGUI/NAMESPACE	2022-08-09 20:08:28 UTC (rev 808)
@@ -1,13 +1,13 @@
-#exportPattern("^[[:alpha:]]+")
-export(yuimaGUI)
-
-importFrom("shiny", "runApp")
-importFrom("ggplot2", "geom_line")
-importFrom("DT", "renderDataTable")
-importFrom("quantmod", "getSymbols")
-importFrom("sde", "MOdist")
-importFrom("shinyBS", "createAlert")
-importFrom("shinydashboard", "dashboardSidebar")
-importFrom("shinyjs", "show")
-importFrom("yuima", "setData")
-importFrom("plotly", "plot_ly")
\ No newline at end of file
+export(yuimaGUI)
+
+importFrom("shiny", "runApp")
+importFrom("ggplot2", "geom_line")
+importFrom("DT", "renderDataTable")
+importFrom("quantmod", "getSymbols")
+importFrom("sde", "MOdist")
+importFrom("shinyBS", "createAlert")
+importFrom("shinydashboard", "dashboardSidebar")
+importFrom("shinyjs", "show")
+importFrom("yuima", "setData")
+importFrom("plotly", "plot_ly")
+importFrom("ghyp", "rghyp")
\ No newline at end of file

Modified: pkg/yuimaGUI/R/sourceCodeYuimaGUI.R
===================================================================
--- pkg/yuimaGUI/R/sourceCodeYuimaGUI.R	2022-08-02 21:09:53 UTC (rev 807)
+++ pkg/yuimaGUI/R/sourceCodeYuimaGUI.R	2022-08-09 20:08:28 UTC (rev 808)
@@ -1,14 +1,31 @@
-yuimaGUI <- function(theme = "black") {
-
-  if(!(theme %in% c("black", "white"))) stop ("Theme not supported. Only 'black' or 'white' themes are available.")
-  print("Please wait while loading...")
-  
-  options(yuimaGUItheme = theme)
-  
-  utils::capture.output(
-    suppressWarnings(
-      shiny::runApp(system.file("yuimaGUI", package = "yuimaGUI"))
-    )
-  )
-  
-}
+#' User-friendly Interface for the yuima package
+#' 
+#' Runs yuima Graphical User Interface
+#' 
+#' @param theme GUI theme: "black" or "white".
+#' 
+#' @return Starts yuima GUI
+#' 
+#' @author The YUIMA Project Team
+#' 
+#' @examples 
+#' \dontrun{
+#' yuimaGUI()
+#' }
+#' 
+#' @export
+#' 
+yuimaGUI <- function(theme = "black") {
+
+  if(!(theme %in% c("black", "white"))) stop ("Theme not supported. Only 'black' or 'white' themes are available.")
+  print("Please wait while loading...")
+  
+  options(yuimaGUItheme = theme)
+  
+  utils::capture.output(
+    suppressWarnings(
+      shiny::runApp(system.file("yuimaGUI", package = "yuimaGUI"))
+    )
+  )
+  
+}

Modified: pkg/yuimaGUI/man/yuimaGUI.Rd
===================================================================
--- pkg/yuimaGUI/man/yuimaGUI.Rd	2022-08-02 21:09:53 UTC (rev 807)
+++ pkg/yuimaGUI/man/yuimaGUI.Rd	2022-08-09 20:08:28 UTC (rev 808)
@@ -1,30 +1,26 @@
-\name{yuimaGUI}
-\alias{yuimaGUI}
-
-\title{
-User-friendly Interface for the yuima package
-}
-\description{
-Runs yuima Graphical User Interface
-}
-\usage{
-yuimaGUI(theme = "black")
-}
-
-\arguments{
-  \item{theme}{GUI theme: "black" or "white".}
-}
-
-\value{
-Starts yuima GUI
-}
-
-\author{
-The YUIMA Project Team
-}
-
-\examples{
-\dontrun{
-yuimaGUI()
-}
-}
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/sourceCodeYuimaGUI.R
+\name{yuimaGUI}
+\alias{yuimaGUI}
+\title{User-friendly Interface for the yuima package}
+\usage{
+yuimaGUI(theme = "black")
+}
+\arguments{
+\item{theme}{GUI theme: "black" or "white".}
+}
+\value{
+Starts yuima GUI
+}
+\description{
+Runs yuima Graphical User Interface
+}
+\examples{
+\dontrun{
+yuimaGUI()
+}
+
+}
+\author{
+The YUIMA Project Team
+}



More information about the Yuima-commits mailing list