--- /dev/null
+There were 3 NOTEs:
+
+1. "New submission / Package was archived on CRAN"
+ - This version addresses all previous issues that led to archiving, at least as far as I can check (R CMD check --as-cran is OK). I forgot the previous issues.
+
+2. "checking for future file timestamps ... NOTE: unable to verify current time"
+ - This appears to be an environmental issue on my machine during check and is not a property of the package files themselves (I reset all timestamps with "find . -exec touch {} +" )
+
+3. "checking compilation flags used ... NOTE: Compilation used the following non-portable flag(s): ..."
+ - These flags are the default configuration of the R installation on my machine. They are not hardcoded in the package's src/Makevars.
+
+====
+
+The version only changes to 1.0.5 because I just added the pvalue() function to the file R/utils.R.
(U)spectral methods. The main methods take d-dimensional inputs and a vector
of binary outputs, and return parameters according to the GLMs mixture model
(General Linear Model). For more details see chapter 3 in the PhD thesis of
- Mor-Absa Loum: <https://www.theses.fr/s156435>, available here
+ Mor-Absa Loum: <https://theses.fr/s156435>, available here
<https://theses.hal.science/tel-01877796/document>.
-Version: 1.0-4
-Author: Benjamin Auder <Benjamin.Auder@u-psud.fr> [aut,cre],
- Mor-Absa Loum <Mor-Absa.Loum@u-psud.fr> [aut]
-Maintainer: Benjamin Auder <Benjamin.Auder@u-psud.fr>
+Version: 1.0-5
+Authors@R: c(person(given = "Benjamin",
+ family = "Auder",
+ role = c("aut", "cre"),
+ email = "benjamin.auder@universite-paris-saclay.fr"),
+ person(given = "Mor-Absa",
+ family = "Loum",
+ role = "aut",
+ email = "morabsa.loum@univ-thies.sn"))
Depends:
R (>= 3.5.0),
Imports:
testthat (>= 3.0.0),
roxygen2
License: MIT + file LICENSE
-RoxygenNote: 7.3.2
+RoxygenNote: 7.3.3
URL: https://github.com/yagu0/morpheus
Collate:
'utils.R'
export(plotBox)
export(plotCoefs)
export(plotHist)
-importFrom(graphics,barplot)
-importFrom(graphics,boxplot)
-importFrom(graphics,hist)
-importFrom(graphics,matplot)
-importFrom(graphics,par)
+importFrom(graphics,barplot,boxplot,hist,matplot,par)
importFrom(jointDiag,ajd)
importFrom(methods,new)
importFrom(pracma,integral)
-importFrom(stats,integrate)
-importFrom(stats,pnorm)
-importFrom(stats,rbinom)
-importFrom(stats,rmultinom)
-importFrom(stats,rnorm)
-importFrom(stats,runif)
-importFrom(stats,sd)
+importFrom(stats,integrate,pnorm,rbinom,rmultinom,rnorm,runif,sd,pchisq,var)
useDynLib(morpheus, .registration = TRUE)
#' @useDynLib morpheus, .registration = TRUE
#'
#' @importFrom jointDiag ajd
-#' @importFrom stats rbinom rmultinom rnorm pnorm runif integrate sd
+#' @importFrom stats rbinom rmultinom rnorm pnorm runif integrate sd var pchisq
#' @importFrom graphics boxplot barplot hist par matplot
#' @importFrom methods new
#' @importFrom pracma integral
#' @return The matrix of p-values (same size as mr[[1]])
#'
#' @examples
-#' mr <- multiRun(...) #cf ?multiRun
+#' # Next line should be a real call to multiRun()
+#' mr <- list( list(matrix(c(1,2,3,4),ncol=2),matrix(c(2,2,1,1),ncol=2)) )
#' p <- pvalue(mr[[1]])
#' @export
pvalue <- function(mr)