-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
479 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
|
Oops, something went wrong.