在阅读了(非常好的)用户指南之后,刚刚开始尝试 TraMiner
我设法从我的数据中创建了序列,但是当我试图绘制时,我得到了以下错误:
> seqiplot(my.data$sequences, title="My first sequences", withlegend = TRUE)
Error in do.call(plot, args = plist) :
'what' must be a string or a function
这是从哪里来的,我能做些什么呢?
在阅读了(非常好的)用户指南之后,刚刚开始尝试 TraMiner
我设法从我的数据中创建了序列,但是当我试图绘制时,我得到了以下错误:
> seqiplot(my.data$sequences, title="My first sequences", withlegend = TRUE)
Error in do.call(plot, args = plist) :
'what' must be a string or a function
这是从哪里来的,我能做些什么呢?
我认为您会收到错误,因为您覆盖了该plot
功能。这重现了错误:
plot <- 1
do.call(plot,list(0))
Error in do.call(plot, list(0)) :
'what' must be a character string or a function
这应该是:
rm(plot)
seqiplot(my.data$sequences, title="My first sequences", withlegend = TRUE)
我猜错误出现是因为您将序列状态对象限制为单个变量my.data$sequences
。你试过my.data
吗?