Last updated on 2025-05-22 06:51:59 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.1.6 | 7.97 | 54.30 | 62.27 | OK | |
r-devel-linux-x86_64-debian-gcc | 1.1.6 | 6.33 | 41.88 | 48.21 | OK | |
r-devel-linux-x86_64-fedora-clang | 1.1.6 | 102.09 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 1.1.6 | 112.15 | OK | |||
r-devel-windows-x86_64 | 1.1.6 | 8.00 | 140.00 | 148.00 | OK | |
r-patched-linux-x86_64 | 1.1.6 | 8.40 | 51.27 | 59.67 | OK | |
r-release-linux-x86_64 | 1.1.6 | 7.62 | 50.66 | 58.28 | OK | |
r-release-macos-arm64 | 1.1.6 | 136.00 | OK | |||
r-release-macos-x86_64 | 1.1.6 | 117.00 | OK | |||
r-release-windows-x86_64 | 1.1.6 | 8.00 | 169.00 | 177.00 | ERROR | |
r-oldrel-macos-arm64 | 1.1.6 | 61.00 | OK | |||
r-oldrel-macos-x86_64 | 1.1.6 | 68.00 | OK | |||
r-oldrel-windows-x86_64 | 1.1.6 | 7.00 | 87.00 | 94.00 | OK |
Version: 1.1.6
Check: examples
Result: ERROR
Running examples in 'smovie-Ex.R' failed
The error most likely occurred in:
> ### Name: wws
> ### Title: Wald, Wilks and Score tests
> ### Aliases: wws
>
> ### ** Examples
>
> # N(theta, 1) example, test statistics equivalent
> wws(theta0 = 0.8)
>
> # binomial(20, theta) example, test statistics similar
> wws(theta0 = 0.5, model = "binom")
>
> # binomial(20, theta) example, test statistic rather different
> # for theta0 distant from theta_mle
> wws(theta0 = 0.9, model = "binom", data = c(19, 1), theta_range = c(0.1, 0.99))
>
> # binomial(2000, theta) example, test statistics very similar
> wws(theta0 = 0.5, model = "binom", data = c(1000, 1000))
>
> set.seed(47)
> x <- rnorm(10)
> wws(theta0 = 0.2, model = "norm", theta_range = c(-1, 1))
>
> # Log-likelihood for a binomial experiment (up to an additive constant)
> bin_loglik <- function(p, n_success, n_failure) {
+ return(n_success * log(p) + n_failure * log(1 - p))
+ }
>
> wws(loglik = bin_loglik, theta0 = 0.5, theta_range = c(0.1, 0.7),
+ theta_mle = 7 / 20, n_success = 7, n_failure = 13)
>
> bin_alg_score <- function(p, n_success, n_failure) {
+ return(n_success / p - n_failure / (1 - p))
+ }
> bin_alg_obs_info <- function(p, n_success, n_failure) {
+ return(n_success / p ^ 2 + n_failure / (1 - p) ^ 2)
+ }
> wws(loglik = bin_loglik, theta0 = 0.5, theta_range = c(0.1, 0.7),
+ theta_mle = 7 / 20, n_success = 7, n_failure = 13,
+ alg_score = bin_alg_score, alg_obs_info = bin_alg_obs_info)
Unable to save metafile to the clipboard
Error in structure(.External(.C_dotTcl, ...), class = "tclObj") :
[tcl] can't get device image.
Calls: wws ... <Anonymous> -> w.tkrplot -> handshake -> fun -> .Tcl -> structure
Execution halted
Flavor: r-release-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.