我想知道是否可以省略seqdef
的函数TraMineR
的输出。我没有看到任何verbose
参数或类似参数。
谢谢! 维克多
答案 0 :(得分:1)
您可能是想禁止显示消息。因此,仅使用suppressMessages(seqdef(...))
,如以下示例所示。请注意,suppressMessages
是基本的R函数,可以与seqdist
或seqrep
等其他函数一起使用。
library(TraMineR)
data(biofam)
biofam.lab <- c("Parent", "Left", "Married", "Left+Marr",
"Child", "Left+Child", "Left+Marr+Child", "Divorced")
biofam.short <- c("P","L","M","LM","C","LC","LMC","D")
biofam.seq <- suppressMessages(seqdef(biofam[,10:25], alphabet=0:7,
states=biofam.short, labels=biofam.lab))