Last updated on 2024-11-01 12:48:47 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 2.2-10 | 49.94 | 217.75 | 267.69 | OK | |
r-devel-linux-x86_64-debian-gcc | 2.2-10 | 29.67 | 147.19 | 176.86 | OK | |
r-devel-linux-x86_64-fedora-clang | 2.2-10 | 431.04 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 2.2-10 | 370.24 | ERROR | |||
r-devel-windows-x86_64 | 2.2-10 | 60.00 | 258.00 | 318.00 | OK | |
r-patched-linux-x86_64 | 2.2-10 | 42.55 | 200.94 | 243.49 | OK | |
r-release-linux-x86_64 | 2.2-10 | 42.78 | 205.41 | 248.19 | OK | |
r-release-macos-arm64 | 2.2-10 | 114.00 | OK | |||
r-release-macos-x86_64 | 2.2-10 | 172.00 | OK | |||
r-release-windows-x86_64 | 2.2-10 | 55.00 | 255.00 | 310.00 | OK | |
r-oldrel-macos-arm64 | 2.2-10 | 131.00 | OK | |||
r-oldrel-macos-x86_64 | 2.2-10 | 338.00 | OK | |||
r-oldrel-windows-x86_64 | 2.2-10 | 67.00 | 330.00 | 397.00 | OK |
Version: 2.2-10
Check: examples
Result: ERROR
Running examples in ‘TraMineR-Ex.R’ failed
The error most likely occurred in:
> ### Name: actcal.tse
> ### Title: Example data set: Activity calendar from the Swiss Household
> ### Panel (time stamped event format)
> ### Aliases: actcal.tse
> ### Keywords: Datasets
>
> ### ** Examples
>
> data(actcal)
> actcal.seq <- seqdef(actcal[,13:24])
[>] 4 distinct states appear in the data:
1 = A
2 = B
3 = C
4 = D
[>] state coding:
[alphabet] [label] [long label]
1 A A A
2 B B B
3 C C C
4 D D D
[>] 2000 sequences in the data set
[>] min/max sequence length: 12/12
>
> ## Defining the transition matrix
> transition <- seqetm(actcal.seq, method="transition")
> transition[1,1:4] <- c("FullTime" , "Decrease,PartTime",
+ "Decrease,LowPartTime", "Stop")
> transition[2,1:4] <- c("Increase,FullTime", "PartTime" ,
+ "Decrease,LowPartTime", "Stop")
> transition[3,1:4] <- c("Increase,FullTime", "Increase,PartTime",
+ "LowPartTime" , "Stop")
> transition[4,1:4] <- c("Start,FullTime" , "Start,PartTime" ,
+ "Start,LowPartTime" , "NoActivity")
> transition
A B C D
A "FullTime" "Decrease,PartTime" "Decrease,LowPartTime" "Stop"
B "Increase,FullTime" "PartTime" "Decrease,LowPartTime" "Stop"
C "Increase,FullTime" "Increase,PartTime" "LowPartTime" "Stop"
D "Start,FullTime" "Start,PartTime" "Start,LowPartTime" "NoActivity"
>
> ## Converting STS data to TSE
> actcal.tse <- seqformat(actcal, 13:24, from = "STS",to = "TSE",
+ tevent = transition)
[!!] 'id' set to NULL as it is not specified (backward compatibility with TraMineR 1.8)
[!!] replacing original IDs in the output by the sequence indexes
[>] converting STS sequences to 2954 TSE sequences
>
> ## Defining the event sequence object
> actcal.eseq <- seqecreate(id=actcal.tse$id,
+ time=actcal.tse$time, event=actcal.tse$event)
*** caught segfault ***
address 0x1, cause 'memory not mapped'
Traceback:
1: seqecreate.internal(data = data, id = id, timestamp = timestamp, event = event, end.event = end.event, tevent = tevent, use.labels = use.labels, order.before = FALSE, weighted = weighted)
2: seqecreate(id = actcal.tse$id, time = actcal.tse$time, event = actcal.tse$event)
An irrecoverable exception occurred. R is aborting now ...
Flavor: r-devel-linux-x86_64-fedora-gcc