Skip to content

Commit

Permalink
version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stlagsk committed Dec 21, 2019
1 parent 34b7ff3 commit dd1c7be
Show file tree
Hide file tree
Showing 6 changed files with 479 additions and 448 deletions.
54 changes: 27 additions & 27 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
Package: OwenQ
Type: Package
Title: Owen Q-Function
Version: 1.0.2.9000
Date: 2019-09-07
Author: Stéphane Laurent
Maintainer: Stéphane Laurent <laurent_step@outlook.fr>
Description: Evaluates the Owen Q-function for an integer value of the degrees of freedom, by applying Owen's algorithm (1965) <doi:10.1093/biomet/52.3-4.437>.
It is useful for the calculation of the power of equivalence tests.
License: GPL-3
Imports: Rcpp (>= 0.12.10),
stats
LinkingTo: Rcpp,
BH,
RcppNumerical,
RcppEigen
Suggests: testthat,
knitr,
rmarkdown,
mvtnorm
Encoding: UTF-8
LazyData: true
SystemRequirements: C++11
RoxygenNote: 6.1.1
VignetteBuilder: knitr
URL: https://github.com/stla/OwenQ
BugReports: https://github.com/stla/OwenQ/issues
Package: OwenQ
Type: Package
Title: Owen Q-Function
Version: 1.0.3
Date: 2019-12-21
Author: Stéphane Laurent
Maintainer: Stéphane Laurent <laurent_step@outlook.fr>
Description: Evaluates the Owen Q-function for an integer value of the degrees of freedom, by applying Owen's algorithm (1965) <doi:10.1093/biomet/52.3-4.437>.
It is useful for the calculation of the power of equivalence tests.
License: GPL-3
Imports: Rcpp (>= 0.12.10),
stats
LinkingTo: Rcpp,
BH,
RcppNumerical,
RcppEigen
Suggests: testthat,
knitr,
rmarkdown,
mvtnorm
Encoding: UTF-8
LazyData: true
SystemRequirements: C++11
RoxygenNote: 7.0.2
VignetteBuilder: knitr
URL: https://github.com/stla/OwenQ
BugReports: https://github.com/stla/OwenQ/issues
18 changes: 15 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# OwenQ 1.0.0

First release.
# OwenQ 1.0.3

Fixed some issues raised by CRAN checks. No difference for the user.

# OwenQ 1.0.2

Fixed some issues raised by CRAN checks. No difference for the user.

# OwenQ 1.0.1

Fixed some issues raised by CRAN checks. No difference for the user.

# OwenQ 1.0.0

First release.
44 changes: 22 additions & 22 deletions OwenQ.Rproj
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: knitr
LaTeX: pdfLaTeX

AutoAppendNewline: Yes
StripTrailingWhitespace: Yes

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --with-keep.source --no-multiarch
PackageCheckArgs: --no-multiarch
PackageRoxygenize: rd,collate,namespace
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: knitr
LaTeX: pdfLaTeX
AutoAppendNewline: Yes
StripTrailingWhitespace: Yes
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --with-keep.source --no-multiarch
PackageCheckArgs: --no-multiarch
PackageRoxygenize: rd,collate,namespace
126 changes: 63 additions & 63 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

ipowen4 <- function(nu, t1, t2, delta1, delta2, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_ipowen4', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, subdiv, eps_abs, eps_rel)
}

iOwenQ1 <- function(nu, t, delta, R, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_iOwenQ1', PACKAGE = 'OwenQ', nu, t, delta, R, subdiv, eps_abs, eps_rel)
}

iOwenQ2 <- function(nu, t, delta, R, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_iOwenQ2', PACKAGE = 'OwenQ', nu, t, delta, R, subdiv, eps_abs, eps_rel)
}

ipowen2 <- function(nu, t1, t2, delta1, delta2, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_ipowen2', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, subdiv, eps_abs, eps_rel)
}

RcppOwenT <- function(h, a) {
.Call('_OwenQ_RcppOwenT', PACKAGE = 'OwenQ', h, a)
}

RcppOwenStudent <- function(q, nu, delta) {
.Call('_OwenQ_RcppOwenStudent', PACKAGE = 'OwenQ', q, nu, delta)
}

RcppOwenQ1 <- function(nu, t, delta, R, algo = 1L) {
.Call('_OwenQ_RcppOwenQ1', PACKAGE = 'OwenQ', nu, t, delta, R, algo)
}

RcppOwenQ2 <- function(nu, t, delta, R, algo = 1L) {
.Call('_OwenQ_RcppOwenQ2', PACKAGE = 'OwenQ', nu, t, delta, R, algo)
}

RcppOwenCDF4 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF4', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppOwenCDF3 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF3', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppOwenCDF2 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF2', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppOwenCDF1 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF1', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppSpecialOwenCDF2 <- function(nu, t, delta, algo = 1L) {
.Call('_OwenQ_RcppSpecialOwenCDF2', PACKAGE = 'OwenQ', nu, t, delta, algo)
}

pt_boost <- function(q, nu, delta) {
.Call('_OwenQ_pt_boost', PACKAGE = 'OwenQ', q, nu, delta)
}

qt_boost <- function(p, nu, delta) {
.Call('_OwenQ_qt_boost', PACKAGE = 'OwenQ', p, nu, delta)
}

# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

ipowen4 <- function(nu, t1, t2, delta1, delta2, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_ipowen4', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, subdiv, eps_abs, eps_rel)
}

iOwenQ1 <- function(nu, t, delta, R, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_iOwenQ1', PACKAGE = 'OwenQ', nu, t, delta, R, subdiv, eps_abs, eps_rel)
}

iOwenQ2 <- function(nu, t, delta, R, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_iOwenQ2', PACKAGE = 'OwenQ', nu, t, delta, R, subdiv, eps_abs, eps_rel)
}

ipowen2 <- function(nu, t1, t2, delta1, delta2, subdiv = 100L, eps_abs = 1e-14, eps_rel = 1e-14) {
.Call('_OwenQ_ipowen2', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, subdiv, eps_abs, eps_rel)
}

RcppOwenT <- function(h, a) {
.Call('_OwenQ_RcppOwenT', PACKAGE = 'OwenQ', h, a)
}

RcppOwenStudent <- function(q, nu, delta) {
.Call('_OwenQ_RcppOwenStudent', PACKAGE = 'OwenQ', q, nu, delta)
}

RcppOwenQ1 <- function(nu, t, delta, R, algo = 1L) {
.Call('_OwenQ_RcppOwenQ1', PACKAGE = 'OwenQ', nu, t, delta, R, algo)
}

RcppOwenQ2 <- function(nu, t, delta, R, algo = 1L) {
.Call('_OwenQ_RcppOwenQ2', PACKAGE = 'OwenQ', nu, t, delta, R, algo)
}

RcppOwenCDF4 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF4', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppOwenCDF3 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF3', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppOwenCDF2 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF2', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppOwenCDF1 <- function(nu, t1, t2, delta1, delta2, algo = 1L) {
.Call('_OwenQ_RcppOwenCDF1', PACKAGE = 'OwenQ', nu, t1, t2, delta1, delta2, algo)
}

RcppSpecialOwenCDF2 <- function(nu, t, delta, algo = 1L) {
.Call('_OwenQ_RcppSpecialOwenCDF2', PACKAGE = 'OwenQ', nu, t, delta, algo)
}

pt_boost <- function(q, nu, delta) {
.Call('_OwenQ_pt_boost', PACKAGE = 'OwenQ', q, nu, delta)
}

qt_boost <- function(p, nu, delta) {
.Call('_OwenQ_qt_boost', PACKAGE = 'OwenQ', p, nu, delta)
}

Loading

0 comments on commit dd1c7be

Please sign in to comment.