Last updated on 2026-06-08 19:50:57 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.0.0 | 2.29 | 84.20 | 86.49 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.0.0 | 2.00 | 54.47 | 56.47 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.0.0 | 132.80 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 1.0.0 | 141.75 | OK | |||
| r-devel-windows-x86_64 | 1.0.0 | 5.00 | 126.00 | 131.00 | OK | |
| r-patched-linux-x86_64 | 1.0.0 | 3.57 | 61.76 | 65.33 | OK | |
| r-release-linux-x86_64 | 1.0.0 | 2.20 | 61.41 | 63.61 | OK | |
| r-release-macos-arm64 | 1.0.0 | 1.00 | 23.00 | 24.00 | OK | |
| r-release-macos-x86_64 | 1.0.0 | 2.00 | 88.00 | 90.00 | OK | |
| r-release-windows-x86_64 | 1.0.0 | 5.00 | 106.00 | 111.00 | OK | |
| r-oldrel-macos-arm64 | 1.0.0 | 1.00 | 29.00 | 30.00 | OK | |
| r-oldrel-macos-x86_64 | 1.0.0 | 2.00 | 133.00 | 135.00 | OK | |
| r-oldrel-windows-x86_64 | 1.0.0 | 6.00 | 128.00 | 134.00 | OK |
Version: 1.0.0
Check: examples
Result: ERROR
Running examples in ‘HistData-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: CushnyPeebles
> ### Title: Cushny-Peebles Data: Soporific Effects of Scopolamine
> ### Derivatives
> ### Aliases: CushnyPeebles CushnyPeeblesN
> ### Keywords: datasets
>
> ### ** Examples
>
>
> data(CushnyPeebles)
> # quick looks at the data
> plot(CushnyPeebles)
> boxplot(CushnyPeebles, ylab="Hours of Sleep", xlab="Treatment")
>
> ##########################
> # Repeated measures MANOVA
>
> CPmod <- lm(cbind(Control, L_hyoscyamine, L_hyoscine, DL_hyoscine) ~ 1, data=CushnyPeebles)
>
> # Assign within-S factor and contrasts
> Treatment <- factor(colnames(CushnyPeebles), levels=colnames(CushnyPeebles))
> contrasts(Treatment) <- matrix(
+ c(-3, 1, 1, 1,
+ 0,-2, 1, 1,
+ 0, 0,-1, 1), ncol=3)
> colnames(contrasts(Treatment)) <- c("Control.Drug", "L.DL", "L_hy.DL_hy")
>
> Treats <- data.frame(Treatment)
> if (require(car)) {
+ (CPaov <- Anova(CPmod, idata=Treats, idesign= ~Treatment))
+ }
Loading required package: car
Warning in library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘car’
> summary(CPaov, univariate=FALSE)
Error: object 'CPaov' not found
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc