Last updated on 2026-09-13 02:52:20 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 5.1.6 | 733.94 | 340.63 | 1074.57 | OK | |
| r-devel-linux-x86_64-debian-gcc | 5.1.6 | 553.48 | 251.44 | 804.92 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 5.1.6 | 780.00 | 158.23 | 938.23 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 5.1.6 | 549.00 | 201.45 | 750.45 | ERROR | |
| r-devel-windows-x86_64 | 5.1.6 | 924.00 | 487.00 | 1411.00 | OK | |
| r-patched-linux-x86_64 | 5.1.6 | 763.17 | 346.85 | 1110.02 | OK | |
| r-release-linux-x86_64 | 5.1.6 | 751.74 | 344.48 | 1096.22 | ERROR | |
| r-release-macos-arm64 | 5.1.6 | 180.00 | -22.00 | 158.00 | OK | |
| r-release-macos-x86_64 | 5.1.6 | 569.00 | 81.00 | 650.00 | OK | |
| r-release-windows-x86_64 | 5.1.6 | 941.00 | 453.00 | 1394.00 | OK | |
| r-oldrel-macos-arm64 | 5.1.6 | 720.00 | -55.00 | 665.00 | NOTE | |
| r-oldrel-macos-x86_64 | 5.1.6 | 573.00 | 329.00 | 902.00 | NOTE | |
| r-oldrel-windows-x86_64 | 5.1.6 | 1201.00 | 576.00 | 1777.00 | NOTE |
Version: 5.1.6
Check: examples
Result: ERROR
Running examples in ‘rxode2-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: rxSetCovariateNamesForPiping
> ### Title: Assign covariates for piping
> ### Aliases: rxSetCovariateNamesForPiping
>
> ### ** Examples
>
>
> # First set the name of known covariates
> # Note this is case sensitive
>
> rxSetCovariateNamesForPiping(c("WT","HT", "TC"))
>
> one.compartment <- function() {
+ ini({
+ tka <- 0.45 ; label("Log Ka")
+ tcl <- 1 ; label("Log Cl")
+ tv <- 3.45 ; label("Log V")
+ eta.ka ~ 0.6
+ eta.cl ~ 0.3
+ eta.v ~ 0.1
+ add.err <- 0.7
+ })
+ model({
+ ka <- exp(tka + eta.ka)
+ cl <- exp(tcl + eta.cl)
+ v <- exp(tv + eta.v)
+ d / dt(depot) <- -ka * depot
+ d/dt(depot) <- -ka * depot
+ d / dt(center) <- ka * depot - cl / v * center
+ cp <- center / v
+ cp ~ add(add.err)
+ })
+ }
>
> # now TC is detected as a covariate instead of a population parameter
>
> one.compartment |>
+ model({ka <- exp(tka + eta.ka + TC * cov_C)})
ℹ parameter labels from comments are typically ignored in non-interactive mode
ℹ Need to run with the source intact to parse comments
ℹ add covariate `TC` (known covariate)
ℹ add population parameter `cov_C` and set estimate to 1
Error in rbind(deparse.level, ...) :
numbers of columns of arguments do not match
Calls: model ... FUN -> .addVariableToIniDf -> assign -> rbind -> rbind
Execution halted
Flavors: r-devel-linux-x86_64-debian-gcc, r-release-linux-x86_64
Version: 5.1.6
Check: examples
Result: ERROR
Running examples in ‘rxode2-Ex.R’ failed
The error most likely occurred in:
> ### Name: rxSetCovariateNamesForPiping
> ### Title: Assign covariates for piping
> ### Aliases: rxSetCovariateNamesForPiping
>
> ### ** Examples
>
>
> # First set the name of known covariates
> # Note this is case sensitive
>
> rxSetCovariateNamesForPiping(c("WT","HT", "TC"))
>
> one.compartment <- function() {
+ ini({
+ tka <- 0.45 ; label("Log Ka")
+ tcl <- 1 ; label("Log Cl")
+ tv <- 3.45 ; label("Log V")
+ eta.ka ~ 0.6
+ eta.cl ~ 0.3
+ eta.v ~ 0.1
+ add.err <- 0.7
+ })
+ model({
+ ka <- exp(tka + eta.ka)
+ cl <- exp(tcl + eta.cl)
+ v <- exp(tv + eta.v)
+ d / dt(depot) <- -ka * depot
+ d/dt(depot) <- -ka * depot
+ d / dt(center) <- ka * depot - cl / v * center
+ cp <- center / v
+ cp ~ add(add.err)
+ })
+ }
>
> # now TC is detected as a covariate instead of a population parameter
>
> one.compartment |>
+ model({ka <- exp(tka + eta.ka + TC * cov_C)})
ℹ parameter labels from comments are typically ignored in non-interactive mode
ℹ Need to run with the source intact to parse comments
ℹ add covariate `TC` (known covariate)
ℹ add population parameter `cov_C` and set estimate to 1
Error in rbind(deparse.level, ...) :
numbers of columns of arguments do not match
Calls: model ... FUN -> .addVariableToIniDf -> assign -> rbind -> rbind
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 5.1.6
Check: compiled code
Result: NOTE
File ‘rxode2/libs/rxode2.so’:
Found non-API call to R: ‘DATAPTR’
Compiled code should not call non-API entry points in R.
See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual,
and section ‘Moving into C API compliance’ for issues with the use of
non-API entry points.
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Version: 5.1.6
Check: compiled code
Result: NOTE
File 'rxode2/libs/x64/rxode2.dll':
Found non-API call to R: 'DATAPTR'
Compiled code should not call non-API entry points in R.
See 'Writing portable packages' in the 'Writing R Extensions' manual,
and section 'Moving into C API compliance' for issues with the use of
non-API entry points.
Flavor: r-oldrel-windows-x86_64