The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
Last updated on 2026-09-15 11:53:56 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.7 | 909.86 | 264.35 | 1174.21 | OK | |
| r-devel-linux-x86_64-fedora-clang | 5.1.7 | 780.00 | -19.86 | 760.14 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 5.1.7 | 900.00 | 189.42 | 1089.42 | OK | |
| 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.7 | 1380.00 | 162.00 | 1542.00 | OK | |
| r-release-windows-x86_64 | 5.1.6 | 941.00 | 453.00 | 1394.00 | OK | |
| r-oldrel-macos-arm64 | 5.1.7 | 780.00 | -47.00 | 733.00 | NOTE | |
| r-oldrel-macos-x86_64 | 5.1.7 | 1560.00 | 203.00 | 1763.00 | NOTE | |
| r-oldrel-windows-x86_64 | 5.1.6 | 1171.00 | 558.00 | 1729.00 | ERROR |
Version: 5.1.7
Check: whether package can be installed
Result: ERROR
Installation failed.
Flavor: r-devel-linux-x86_64-fedora-clang
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
Flavor: r-release-linux-x86_64
Version: 5.1.7
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
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
Flavor: r-oldrel-windows-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.